body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    overflow: auto !important;
    color: #f8f9fa; /* Lichte tekstkleur */
}

.navbar {
    width: 100%;
    height: 60px;
    background-color: #16191b; /* Donkere navbar-kleur */
    color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar-left h1 {
    margin: 0;
    padding-left: 30%;
}

.navbar-right {
    
    display: flex;
    align-items: center;
    padding-right: 0;
}

.user-profile {
    display: flex;
    align-items: center;
    position: relative;
}

.profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    background: none;
    border: none;
    color: #f8f9fa;
    font-size: 15px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #16191b;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    right: 0;
}

.dropdown-content.show {
    display: block;
    opacity: 1;
}

.dropdown-content a {
    text-decoration: none;
    color: #f8f9fa;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background-color: #343a40;
}

.main-content {
    padding: 80px 20px;
    flex-grow: 1;
    min-height: 100vh;
    transition: margin-left 0.3s ease, width 0.3s ease;
}

.main-content.full-width {
    margin-left: 0;
    width: 100%;
}

.redboxbackground {
    background-color: #C8102E !important;
    color: white !important;
}

.card {
    border: none;
    border-radius: 10px;
    background-color: #212529; /* Donkere kaartkleur */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.card h2 svg {
    margin-right: 8px;
}

.island {
    background-color: #324157; /* Donkere eilandkleur */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.topIsland {
    background-color: #233725; /* Donkere eilandkleur */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 5px;
    text-align: center;
    align-items: center;
    /* cursor: pointer; */
}
.containerCenter {
    align-items: center;
    text-align: center;
    
    position: flex;
}
.topIsland h2 {
    font-size: 1.3rem;
    font-weight: 450;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.island:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}
.island h2 {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.island svg {
    width: 24px;
    height: 24px;
}

.island .bottom {
    margin-top: 0px!important;
    padding-top: 0%!important;
    font-size: 0.9rem;
    color: #868e96; /* Grijze tekstkleur */
}

.dashboard-banner {
    background-color: rgba(31, 41, 55, 0.9); /* Transparanter voor een glas-effect */
    background-image: url('https://dashboard.allonebot.com/assets/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f8f9fa;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px); /* Glas-effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dashboard-banner h1 {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInDown 0.8s ease-out;
}

.dashboard-banner h1 svg {
    width: 35px;
    height: 35px;
    color: #38bdf8; /* Mooie blauwe tint voor icon */
}

.dashboard-banner p {
    margin: 5px 0 0;
    font-size: 1.3rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out;
}

/* Animaties */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.guildimage {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 10px;
    cursor: pointer;
}
  
.container {
  display: inline;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.island {
  background-color: #1f2937;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: #f8f9fa;
  width: 100%;
}

.user-info {
  display: flex;
  align-items: center;
}

.user-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.stats p {
  margin: 5px 0;
}

.switch-box h4 {
  text-align: center;
  margin-bottom: 15px;
  color: #fff;
}

.switch-box {
  width: 100%;
  padding: 10px; /* Voeg wat padding toe voor betere weergave */
  box-sizing: border-box; /* Zorg ervoor dat padding wordt meegerekend in de breedte */
  margin-left: 10%;
}

.form-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  width: 100%; /* Zorg ervoor dat de form-check de volledige breedte van de switch-box gebruikt */
  box-sizing: border-box; /* Zorg ervoor dat padding wordt meegerekend in de breedte */
}

.form-check-label {
  font-size: 14px;
  color: #d1d5db;
  flex: 1; /* Zorg ervoor dat het label de beschikbare ruimte gebruikt */
  margin-right: 10px; /* Voeg wat ruimte toe tussen het label en de switch */
}

.switch {
  flex-shrink: 0; /* Zorg ervoor dat de switch niet krimpt */
  margin-left: auto; /* Verplaats de switch naar rechts */
}
.textcentersettings {
  text-align: center;
  align-items: center;
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

#successMessage {
    display: none;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #28a745;
    color: white;
    padding: 10px;
    border-radius: 5px;
    animation-duration: 0.5s;
    animation-fill-mode: both;
}
.form-control-sm {
    width: 80%;
    box-sizing: border-box;
}
.redbackgrounddark {
    background-color: rgba(60, 0, 10, 0.574);
    color: white !important;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 2%;
    box-shadow: 0 4px 8px rgba(66, 0, 11, 0.6);
}
.greenbackgrounddark {
    background-color: #0b1f37;
    color: white !important;
    padding-bottom: 2%;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 2%;
    box-shadow: 0 4px 8px rgba(0, 33, 48, 0.525);
}
.serverswithboth3 {
    padding-top: 10px;
}
.serverswithoutboth3 {
    padding-top: 10px;
}
.buttonalignleft {
    text-align: left;
    align-items: left;
}
.user-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Ruimte tussen de items */
}

.user-info {
    flex: 1 1 200px; /* Flex-grow, flex-shrink, basisgrootte */
    min-width: 200px; /* Minimale breedte voor elk item */
    background-color: #1f2937;
    padding: 10px; /* Binnenruimte */
    border-radius: 5px; /* Afgeronde hoeken */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Lichte schaduw */
}

.user-info label {
    display: block;
    font-weight: bold;
    color: #ffffff;
}

.btn-logout {
    background-color: #dc3545; /* Rode achtergrondkleur */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s ease;
}

.btn-logout:hover {
    background-color: #c82333; /* Donkerdere rode kleur bij hover */
}

.btn-logout i {
    font-size: 16px;
}
.button-spacing {
    margin-bottom: 10px;
}

.AllOneButton {
    color: white;
    padding: 0px 40px;
    cursor: pointer;
    font-size: 38px;
    text-decoration: none;    
}
.btn-custom-navbar-invite {
    padding-right: 5%;
}
.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 20px;
}

.submenu.hidden {
    max-height: 0;
}

.submenu:not(.hidden) {
    max-height: 500px;
}
.hrcommands {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 80%;
}
.hrcommandssection {
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    margin-left: -11%;
}
.noclickable {
    cursor: initial;
}
.clickable {
    cursor: pointer;
}
.navbar-icon {
    margin-right: 20px;
    margin-left: 20px;
    font-size: 20px;
    cursor: pointer;
}
.dropdown-language {
    background-color: #1f2937; /* Donkere achtergrondkleur */
    color: #d1d5db; /* Lichte tekstkleur */
    border: 1px solid #343a40; /* Randkleur */
    border-radius: 5px; /* Afgeronde hoeken */
    padding: 8px 12px; /* Binnenruimte */
    font-size: 14px; /* Tekstgrootte */
    cursor: pointer; /* Cursor verandert naar pointer */
    width: 100%; /* Laat het element de volledige breedte innemen */
    box-sizing: border-box; /* Houd rekening met padding en breedte */
    transition: background-color 0.3s, border-color 0.3s; /* Animaties voor hover */
  }
  
  .dropdown-language:focus {
    outline: none; /* Verwijder de standaard outline */
    border-color: #2164b5; /* Accentkleur bij focus */
  }
  
  .dropdown-language:hover {
    background-color: #343a40; /* Iets lichtere achtergrondkleur bij hover */
  }
  
  .red-section {
    background: linear-gradient(145deg, rgba(90, 0, 15, 1), rgba(45, 0, 10, 0.8));
    color: #f8f8f8;
    padding: 2%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(90, 0, 15, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.green-section {
    background: linear-gradient(145deg, #0d2746, #081a31);
    color: #f8f8f8;
    padding: 2%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(13, 39, 70, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.server-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.server-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.server-name {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.servers-with-bot-title, .servers-without-bot-title {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.5rem;
    font-weight: bold;
}


.server-footer {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.server-row {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.server-col {
    padding: 10px;
}



.server-list {
    background: #0e1a2a; /* Donkere achtergrond */
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.server-item {
    display: flex;
    align-items: center;
    background: #162338; /* Donkerblauw */
    padding: 12px 16px;
    margin: 6px 0;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.server-item:hover {
    background: #1d2b48; /* Iets lichtere hover-kleur */
    transform: translateY(-2px);
}

.server-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.server-name {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
}

.server-arrow {
    font-size: 18px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.server-item:hover .server-arrow {
    opacity: 1;
}

.no-servers {
    text-align: center;
    padding: 20px;
    color: #fff;
    font-size: 16px;
}

.server-search {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #2d3a4a;
    border-radius: 6px;
    font-size: 16px;
    background: #162338;
    color: white;
}

.server-search:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
}
.dashboard-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
}

.dashboard-actions, .dashboard-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
}

.action-card, .info-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.action-card:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.action-card i, .info-card i {
    font-size: 2rem;
    color: #4ade80;
    margin-bottom: 15px;
}

.action-card2, .info-card {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.action-card2:hover, .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.action-card2 i, .info-card i {
    font-size: 2rem;
    color: #4ade80;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .dashboard-wrapper {
        grid-template-columns: 1fr;
    }
}

.dashboard-banner-title {
    color: #38bdf8!important;

  }