
        .language-selector {
            position: relative;
            margin: 0 1.5rem 0.5rem 1.5rem;
        }

        .language-dropdown {
            background: rgba(99, 102, 241, 0.1);
            border: none;
            border-radius: 0.375rem;
            color: #e2e8f0;
            padding: 0.5rem 0.75rem;
            width: 100%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.2s ease;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .language-dropdown:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: var(--accent-color);
            transform: translateY(-1px);
        }

        .language-dropdown .current-lang {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #e2e8f0;
        }

        .language-dropdown .flag-icon {
            width: 16px;
            height: 12px;
            border-radius: 2px;
            background-size: cover;
            background-position: center;
            display: inline-block;
        }

        /* Flag Sprites als Data URLs */
        .flag-icon.flag-de {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='0.67' fill='%23000'/%3E%3Crect y='0.67' width='3' height='0.66' fill='%23f00'/%3E%3Crect y='1.33' width='3' height='0.67' fill='%23ffce00'/%3E%3C/svg%3E");
        }

        .flag-icon.flag-en {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cg stroke='%23FFF'%3E%3Cpath d='m0 0 60 30m0-30L0 30' stroke-width='6'/%3E%3Cpath d='m0 0 60 30m0-30L0 30' stroke='%23C8102E' stroke-width='4'/%3E%3C/g%3E%3Cg stroke='%23FFF' stroke-width='10'%3E%3Cpath d='M30 0v30M0 15h60'/%3E%3C/g%3E%3Cg stroke='%23C8102E' stroke-width='6'%3E%3Cpath d='M30 0v30M0 15h60'/%3E%3C/g%3E%3C/svg%3E");
        }

        .flag-icon.flag-nl {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 3 2'%3E%3Crect width='3' height='0.67' fill='%23ae1c28'/%3E%3Crect y='0.67' width='3' height='0.66' fill='%23fff'/%3E%3Crect y='1.33' width='3' height='0.67' fill='%231e4785'/%3E%3C/svg%3E");
        }

        .language-dropdown .chevron {
            transition: transform 0.2s ease;
            color: #94a3b8;
            font-size: 0.875rem;
        }

        .language-dropdown.open .chevron {
            transform: rotate(180deg);
        }

        .language-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--bs-dark);
            border: 1px solid var(--border-color);
            border-radius: 0.5rem;
            margin-top: 0.25rem;
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .language-options.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .language-option {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.2s ease;
            cursor: pointer;
            font-weight: 500;
        }

        .language-option:hover {
            background: rgba(99, 102, 241, 0.1);
            color: var(--bs-body-color);
        }

        .language-option.active {
            background: rgba(99, 102, 241, 0.15);
            color: var(--accent-color);
        }

        .language-option:first-child {
            border-radius: 0.5rem 0.5rem 0 0;
        }

        .language-option:last-child {
            border-radius: 0 0 0.5rem 0.5rem;
        }

        /* Light theme overrides für Language Selector */
        html[data-bs-theme="light"] .language-options {
            background: #1e293b;
            border-color: #334155;
        }

        html[data-bs-theme="light"] .language-option {
            color: #94a3b8;
        }

        html[data-bs-theme="light"] .language-option:hover {
            color: #e2e8f0;
        }
