        :root {
            --bg-primary: #121212;
            --bg-secondary: #1f1f1f;
            --accent: #7289DA;
            --accent-hover: #5e73b8;
            --text-primary: #ffffff;
            --text-secondary: #b9bbbe;
            --card-bg: #2d2d2d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }
        
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo img {
            height: 40px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }
        
        .nav-links a:hover {
            color: var(--text-primary);
        }
        
        .language-selector {
            position: relative;
            margin-left: 20px;
        }
        
        .language-btn {
            display: flex;
            align-items: center;
            gap: 5px;
            background: transparent;
            border: 1px solid var(--text-secondary);
            color: var(--text-secondary);
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .language-btn:hover {
            color: var(--text-primary);
            border-color: var(--text-primary);
        }
        
        .language-btn img {
            width: 16px;
            height: 16px;
        }
        
        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background-color: var(--bg-secondary);
            border-radius: 4px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            padding: 8px 0;
            min-width: 120px;
            z-index: 100;
            display: none;
        }
        
        .language-dropdown.show {
            display: block;
        }
        
        .language-option {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            cursor: pointer;
            transition: background-color 0.2s ease;
            color: var(--text-secondary);
            text-decoration: none;
        }
        
        .language-option:hover {
            background-color: rgba(114, 137, 218, 0.1);
            color: var(--text-primary);
        }
        
        .language-option img {
            width: 16px;
            height: 16px;
        }
        
        .hero {
            text-align: center;
            padding: 80px 0;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 24px;
            background: linear-gradient(90deg, #7289DA, #5e73b8);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto 48px;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: background-color 0.2s ease, transform 0.2s ease;
        }
        
        .btn:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
        }
        
        .btn svg {
            width: 20px;
            height: 20px;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--accent);
            color: var(--accent);
        }
        
        .btn-outline:hover {
            background-color: rgba(114, 137, 218, 0.1);
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            padding: 40px 0 80px;
        }
        
        .feature-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 32px;
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 32px;
            margin-bottom: 16px;
            color: var(--accent);
        }
        
        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .feature-card p {
            color: var(--text-secondary);
        }
        
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
        }
        
        .dashboard-preview {
            background-color: var(--bg-secondary);
            border-radius: 16px;
            overflow: hidden;
            margin-top: 60px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }
        
        .dashboard-preview img {
            width: 100%;
            height: auto;
            border-bottom: 1px solid #333;
        }
        
        footer {
            background-color: var(--bg-secondary);
            padding: 40px 0;
            margin-top: 80px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-primary);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .footer-column a:hover {
            color: var(--accent);
        }
        
        .copyright {
            text-align: center;
            color: var(--text-secondary);
            margin-top: 40px;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .language-selector {
                position: absolute;
                top: 24px;
                right: 20px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 32px;
            }
        }

        /* For language detection popup */
        .language-popup {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--bg-secondary);
            border-radius: 8px;
            padding: 16px 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: center;
            gap: 16px;
            z-index: 1000;
            max-width: 90%;
            width: 500px;
        }
        
        .language-popup p {
            flex: 1;
            margin: 0;
        }
        
        .language-popup-buttons {
            display: flex;
            gap: 8px;
        }
        
        .popup-btn {
            padding: 8px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .popup-btn-primary {
            background-color: var(--accent);
            color: white;
            border: none;
        }
        
        .popup-btn-primary:hover {
            background-color: var(--accent-hover);
        }
        
        .popup-btn-secondary {
            background-color: transparent;
            border: 1px solid var(--text-secondary);
            color: var(--text-secondary);
        }
        
        .popup-btn-secondary:hover {
            border-color: var(--text-primary);
            color: var(--text-primary);
        }
        
        .hidden {
            display: none;
        }

/* Sidebar styling */
.sidebar {
    width: 250px;
    background-color: #2f3136;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    position: fixed;
    top: 0;
    bottom: 0;
    transition: width 0.3s ease;
    overflow: hidden;
    z-index: 2;
}

.sidebar a, .sidebar button {
    padding: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    display: flex;
    align-items: center;
    transition: background 0.3s;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
}

.sidebar a i, .sidebar button i {
    margin-right: 8px;
    font-size: 1.2em;
}

/* Hover effect for sidebar items */
.sidebar a:hover, .sidebar button:hover {
    background-color: #4f545c;
}

/* Collapsed sidebar styling */
.sidebar.collapsed {
    width: 60px;
}

#sidebarToggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    margin: 10px;
    cursor: pointer;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
}

.sidebar.collapsed .sidebar-content span,
.sidebar.collapsed #selectedServerName,
.sidebar.collapsed #logout span {
    display: none;
}

.sidebar.collapsed .sidebar-content a,
.sidebar.collapsed .sidebar-content button {
    justify-content: center;
}

.sidebar.collapsed .sidebar-content i {
    margin-right: 0;
}

/* Server logo styling */
.server-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 8px;
}

.sidebar.collapsed .server-logo {
    margin-right: 0;
}

/* Adjust main content when sidebar is collapsed */
.main-content {
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

.sidebar.collapsed ~ .main-content {
    margin-left: 60px;
}

.main-content {
    margin-top: 40px;
    flex-grow: 1;
    padding: 20px;
    background-color: #36393f;
    color: white;
    margin-left: 250px;
}

.sidebar.collapsed + .main-content {
    margin-left: 60px;
}

/* Dropdown menu styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2f3136;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow: auto;
    max-height: 200px;
    margin-top: 5px;
    border-radius: 5px;
}

.dropdown-content a {
    color: white;
    padding: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 0.9em;
}

.dropdown-content a i {
    margin-right: 5px;
}

.dropdown-content a:hover {
    background-color: #4f545c;
}

select {
    background-color: #2f3136;
    color: white;
    border: 1px solid #40444b;
    border-radius: 5px;
    padding: 10px;
    font-size: 16px;
    appearance: none;
    outline: none;
}

.select-container {
    position: relative;
    display: inline-block;
}

.select-container::after {
    content: '▼';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}

select:focus {
    border-color: #5865f2;
    box-shadow: 0 0 5px rgba(88, 101, 242, 0.5);
}

.show {
    display: block;
}

#boxes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
}

.command-box {
    background-color: #2f3136;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.command-box h2 {
    margin-bottom: 10px;
}

.command-box2 {
    background-color: #2f3136;
    border-radius: 8px;
    padding: 10px 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    flex: 1 1 calc(33.33% - 10px);
    min-width: 180px;
}

.command-box2 i {
    margin-right: 8px;
    font-size: 20px;
}

.command-box2:hover {
    background-color: #4f545c;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.number-input-container {
    margin-top: 10px;
}

.number-input-container label {
    display: block;
    font-size: 0.9em;
    color: #ddd;
    margin-bottom: 5px;
}

.number-input-container input[type="number"] {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #40444b;
    background-color: #2f3136;
    color: white;
    font-size: 1em;
}

/* Fjern Bot-knap styling */
#removeBotButton {
    background-color: #d9534f; /* Rød farve for at indikere en advarsel */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

#removeBotButton:hover {
    background-color: #c9302c; /* Mørkere rød ved hover */
}

#removeBotButton i {
    font-size: 1.2em;
}

/* Premium Section Styling */
.premium-section {
    text-align: center;
    color: #ffffff;
    background-color: #36393f; /* Same as .main-content background */
    padding: 40px 20px;
    border-radius: 8px;
    margin: 20px 0;
    width: 100%;
    height: 100%; /* Ensures the section covers available vertical space */
    display: flex;
    flex-direction: column;
    align-items: center;
}


.premium-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ffffff;
}

.premium-description {
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 30px;
}

.premium-description a {
    color: #ffffff;
    text-decoration: underline;
}

.pricing-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #2f3136;
    padding: 20px;
    border-radius: 10px;
    width: 260px;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.pricing-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.pricing-card .price {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.pricing-card .price small {
    font-size: 0.5em;
    vertical-align: top;
    color: #bdbdbd;
}

.upgrade-button {
    background-color: #ffffff;
    color: #444343;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1em;
    width: 80%;
    margin-top: auto;
}

.upgrade-button:hover {
    background-color: #ffffff59;
}

.popular {
    border: 2px solid #ffb700;
    background-color: #1c1e22;
}

.popular .popular-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ffb700;
    color: #000;
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 5px;
}

.features-table {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    background-color: #1c1e22;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.features-title {
    background-color: #202225;
    color: #ffffff;
    padding: 15px;
    font-size: 1.5em;
    text-align: center;
}

.features-table table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
}

.features-table th,
.features-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.features-table th {
    background-color: #202225;
    color: #ffdd00;
}

.features-table td {
    background-color: #2f3136;
}

.features-table td i {
    font-size: 1.2em;
}

.features-table tr:last-child td {
    border-bottom: none;
}


