/* /Components/Controls/AuftragStatusBadge.razor.rz.scp.css */
.status-badge[b-tae4rp19p1] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 2px solid transparent;
}

.status-badge i[b-tae4rp19p1] {
    font-size: 1rem;
}

/* Status-spezifische Farben */
.status-offen[b-tae4rp19p1] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    color: #856404;
    border-color: #ffc107;
}

.status-termin[b-tae4rp19p1] {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-color: #17a2b8;
}

.status-im-haus[b-tae4rp19p1] {
    background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
    color: #084298;
    border-color: #0d6efd;
}

.status-serviceberater[b-tae4rp19p1] {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    border-color: #ff9800;
}

.status-werkstattleiter[b-tae4rp19p1] {
    background: linear-gradient(135deg, #e8eaf6 0%, #c5cae9 100%);
    color: #283593;
    border-color: #3f51b5;
}

.status-werkstatt[b-tae4rp19p1] {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
    color: #006064;
    border-color: #00bcd4;
}

.status-bearbeitung[b-tae4rp19p1] {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-color: #17a2b8;
}

.status-fertig[b-tae4rp19p1] {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border-color: #198754;
}

.status-kontrolle[b-tae4rp19p1] {
    background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
    color: #084298;
    border-color: #0d6efd;
}

.status-abgerechnet[b-tae4rp19p1] {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border-color: #198754;
}

.status-abrechnung[b-tae4rp19p1] {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    color: #f57f17;
    border-color: #ffc107;
}

.status-geschlossen[b-tae4rp19p1] {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border-color: #198754;
}

.status-storniert[b-tae4rp19p1] {
    background: linear-gradient(135deg, #e2e3e5 0%, #d3d4d5 100%);
    color: #41464b;
    border-color: #6c757d;
}

.status-default[b-tae4rp19p1] {
    background: linear-gradient(135deg, #e2e3e5 0%, #d3d4d5 100%);
    color: #41464b;
    border-color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .status-badge[b-tae4rp19p1] {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}
/* /Components/Controls/AuftragStatusDropdown.razor.rz.scp.css */
.status-dropdown-container[b-xa03ldr1b6] {
    position: relative;
    display: inline-block;
}

.status-dropdown-container .btn[b-xa03ldr1b6] {
    white-space: nowrap;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-width: 2px;
}

.status-dropdown-menu[b-xa03ldr1b6] {
    position: fixed;
    min-width: 250px;
    max-width: 300px;
    background: white;
    border: 3px solid var(--racing-orange);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.5), 0 0 0 1px rgba(255, 107, 0, 0.1);
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: fadeInDown-b-xa03ldr1b6 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop to close dropdown when clicking outside */
.status-dropdown-backdrop[b-xa03ldr1b6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: transparent;
}

/* Arrow indicator */
.status-dropdown-menu[b-xa03ldr1b6]::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--racing-orange);
}

.status-dropdown-menu[b-xa03ldr1b6]::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

@keyframes fadeInDown-b-xa03ldr1b6 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-dropdown-item[b-xa03ldr1b6] {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid #f0f0f0;
    color: var(--racing-black);
    background: white;
}

.status-dropdown-item:last-child[b-xa03ldr1b6] {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.status-dropdown-item:first-child[b-xa03ldr1b6] {
    border-radius: 10px 10px 0 0;
}

.status-dropdown-item:hover[b-xa03ldr1b6] {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-left: 5px solid var(--racing-orange);
    padding-left: calc(1.25rem - 5px);
    transform: scale(1.02);
}

.status-dropdown-item.active[b-xa03ldr1b6] {
    background: linear-gradient(135deg, var(--racing-orange) 0%, var(--racing-orange-dark) 100%);
    color: white;
    font-weight: 700;
    border-left: 5px solid var(--racing-yellow);
    padding-left: calc(1.25rem - 5px);
}

.status-dropdown-item.active:hover[b-xa03ldr1b6] {
    background: linear-gradient(135deg, var(--racing-orange-light) 0%, var(--racing-orange) 100%);
    transform: scale(1.02);
}

.status-dropdown-item i.bi:first-child[b-xa03ldr1b6] {
    font-size: 1.1rem;
}

.status-dropdown-item .bi-check-lg[b-xa03ldr1b6] {
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .status-dropdown-menu[b-xa03ldr1b6] {
        min-width: 220px;
        max-height: 60vh;
    }

    .status-dropdown-item[b-xa03ldr1b6] {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

/* Custom scrollbar */
.status-dropdown-menu[b-xa03ldr1b6]::-webkit-scrollbar {
    width: 8px;
}

.status-dropdown-menu[b-xa03ldr1b6]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 0 10px 10px 0;
}

.status-dropdown-menu[b-xa03ldr1b6]::-webkit-scrollbar-thumb {
    background: var(--racing-orange);
    border-radius: 4px;
}

.status-dropdown-menu[b-xa03ldr1b6]::-webkit-scrollbar-thumb:hover {
    background: var(--racing-orange-dark);
}
/* /Components/Controls/GlobalSearch.razor.rz.scp.css */
.global-search-container[b-0vsp9a5pta] {
    position: relative;
    margin-bottom: 1.6rem;
    max-width: 860px;
    width: 100%;
    z-index: 100;
}

.search-box[b-0vsp9a5pta] {
    position: relative;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(26,26,26,0.96), rgba(45,45,45,0.94));
    border: 1px solid rgba(255, 107, 0, 0.55);
    box-shadow: 0 8px 28px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04) inset;
    padding: 0.35rem;
    overflow: visible;
}

.search-box:focus-within[b-0vsp9a5pta] {
    border-color: var(--racing-orange-light);
    box-shadow: 0 10px 32px rgba(0,0,0,0.55), 0 0 22px rgba(255,107,0,0.28);
}

.search-box .input-group[b-0vsp9a5pta] {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(10,10,10,0.72);
}

.search-box .input-group > *[b-0vsp9a5pta] {
    background-color: rgba(10,10,10,0.72) !important;
}

.search-box .input-group-text[b-0vsp9a5pta] {
    background: rgba(10,10,10,0.72) !important;
    border: 0;
    color: var(--racing-orange-light);
    font-size: 1.15rem;
    padding-left: 1rem;
}

.search-box .form-control[b-0vsp9a5pta] {
    background: rgba(10,10,10,0.72) !important;
    color: #ffffff !important;
    border: 0;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: none;
    min-height: 52px;
    border-radius: 0 14px 14px 0 !important;
}

.search-box .form-control:has(+ .btn-outline-secondary)[b-0vsp9a5pta] {
    border-radius: 0 !important;
}

.search-box .form-control[b-0vsp9a5pta]::placeholder {
    color: #8f96a3 !important;
    font-weight: 500;
}

.search-box .form-control:focus[b-0vsp9a5pta] {
    border-color: transparent !important;
    background: rgba(10,10,10,0.82) !important;
    box-shadow: none;
}

.search-box .btn-outline-secondary[b-0vsp9a5pta] {
    background: #ff6b00 !important;
    color: #ff8c42 !important;
    border: 0;
    padding: 0 1rem;
    min-height: 52px;
    border-radius: 0 14px 14px 0 !important;
    color: #fff !important;
}

.search-box .btn-outline-secondary:hover[b-0vsp9a5pta] {
    background: var(--racing-orange-light) !important;
    color: #ffffff !important;
}

.search-results-dropdown[b-0vsp9a5pta] {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 0;
    right: 0;
    background: rgba(24,24,24,0.98);
    border: 1px solid rgba(255, 107, 0, 0.5);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(0,0,0,0.65), 0 0 26px rgba(255, 107, 0, 0.2);
    max-height: 500px;
    overflow-y: auto;
    z-index: 50;
    padding: 0.35rem;
}

.search-results-section[b-0vsp9a5pta] {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.search-results-section:last-child[b-0vsp9a5pta] {
    border-bottom: none;
}

.search-results-header[b-0vsp9a5pta] {
    padding: 0.65rem 0.9rem;
    background: linear-gradient(135deg, rgba(255,107,0,0.16), rgba(255,140,66,0.08));
    color: #ff8c42;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.78rem;
    border: 1px solid rgba(255,107,0,0.18);
    border-radius: 10px;
    margin: 0.3rem 0.3rem 0.2rem;
}

.search-result-item[b-0vsp9a5pta] {
    padding: 0.75rem 0.85rem;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    position: relative;
    margin: 0.15rem 0.25rem;
}

.search-result-item[b-0vsp9a5pta]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 3px;
    border-radius: 999px;
    background: var(--racing-orange);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.search-result-item:hover[b-0vsp9a5pta]::before {
    opacity: 1;
}

.search-result-item:last-child[b-0vsp9a5pta] {
    border-bottom: none;
}

.search-result-item:hover[b-0vsp9a5pta] {
    background: rgba(255,107,0,0.12);
    transform: translateX(3px);
    box-shadow: 0 5px 16px rgba(0,0,0,0.28);
}

.search-result-item:active[b-0vsp9a5pta] {
    transform: translateX(3px) scale(0.98);
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.3);
}

.search-results-footer[b-0vsp9a5pta] {
    padding: 0.75rem 1rem;
    background: rgba(10,10,10,0.82);
    color: #a9afb8;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 0 0 12px 12px;
}

/* Lesbarkeit innerhalb des Dropdowns sicherstellen */
.search-results-dropdown .text-muted[b-0vsp9a5pta] {
    color: #c0c4cc !important;
}

.search-results-dropdown strong[b-0vsp9a5pta] {
    color: #ffffff;
}

.search-results-dropdown small[b-0vsp9a5pta] {
    color: #c0c4cc;
}

.search-results-dropdown .btn-link[b-0vsp9a5pta] {
    color: var(--racing-orange) !important;
}

.search-results-dropdown .btn-link:hover[b-0vsp9a5pta] {
    color: #ff8c42 !important;
}

.search-results-dropdown .bi-arrow-right-circle[b-0vsp9a5pta] {
    color: #ff8c42 !important;
}

.search-result-item:hover .text-muted[b-0vsp9a5pta],
.search-result-item:hover small[b-0vsp9a5pta] {
    color: #d1d5db !important;
}

.search-result-item:hover .bi-arrow-right-circle[b-0vsp9a5pta] {
    color: var(--racing-orange) !important;
}

/* "Keine Ergebnisse"-Bereich */
.search-results-dropdown .text-center[b-0vsp9a5pta] {
    color: #c0c4cc;
}

.search-results-dropdown .text-center i[b-0vsp9a5pta] {
    color: var(--racing-orange-light) !important;
}

/* Scrollbar Styling */
.search-results-dropdown[b-0vsp9a5pta]::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown[b-0vsp9a5pta]::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 4px;
}

.search-results-dropdown[b-0vsp9a5pta]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--racing-orange) 0%, var(--racing-orange-dark) 100%);
    border-radius: 4px;
}

.search-results-dropdown[b-0vsp9a5pta]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--racing-orange-light) 0%, var(--racing-orange) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .global-search-container[b-0vsp9a5pta] {
        max-width: 100%;
    }

    .search-results-dropdown[b-0vsp9a5pta] {
        max-height: 400px;
    }

    .search-result-item[b-0vsp9a5pta] {
        padding: 0.5rem 0.75rem;
    }

    .search-results-header[b-0vsp9a5pta] {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Theme fixes: component CSS wins over global CSS, therefore define variants here. */
.theme-dunkel .search-box[b-0vsp9a5pta],
.theme-hell .search-box[b-0vsp9a5pta],
.theme-serios .search-box[b-0vsp9a5pta] {
    background: #ffffff !important;
    border-color: rgba(255,107,0,0.35) !important;
    box-shadow: 0 8px 28px rgba(15,23,42,0.12) !important;
}

.theme-dunkel .search-box[b-0vsp9a5pta] {
    background: #111418 !important;
    border-color: #ff6b00 !important;
    box-shadow: 0 14px 36px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,107,0,0.2) !important;
}

.theme-serios .search-box[b-0vsp9a5pta] {
    border-color: #b91c1c !important;
    box-shadow: 0 8px 28px rgba(127,29,29,0.12) !important;
}

.theme-oldschool .search-box[b-0vsp9a5pta] {
    background: #f7f7f7 !important;
    border-color: #7f9db9 !important;
    border-radius: 3px !important;
    box-shadow: 0 1px 0 #ffffff inset, 0 0 0 1px #c3d9ef !important;
}

.theme-dunkel .search-box:focus-within[b-0vsp9a5pta],
.theme-hell .search-box:focus-within[b-0vsp9a5pta] {
    border-color: var(--racing-orange) !important;
    box-shadow: 0 10px 30px rgba(255,107,0,0.18) !important;
}

.theme-serios .search-box:focus-within[b-0vsp9a5pta] {
    border-color: #991b1b !important;
    box-shadow: 0 10px 30px rgba(185,28,28,0.18) !important;
}

.theme-oldschool .search-box:focus-within[b-0vsp9a5pta] {
    border-color: #3b6ea5 !important;
    box-shadow: 0 0 0 2px rgba(59,110,165,0.18) !important;
}

.theme-dunkel .search-box .input-group[b-0vsp9a5pta],
.theme-dunkel .search-box .input-group > *[b-0vsp9a5pta],
.theme-dunkel .search-box .input-group-text[b-0vsp9a5pta],
.theme-dunkel .search-box .form-control[b-0vsp9a5pta],
.theme-oldschool .search-box .input-group[b-0vsp9a5pta],
.theme-oldschool .search-box .input-group > *[b-0vsp9a5pta],
.theme-oldschool .search-box .input-group-text[b-0vsp9a5pta],
.theme-oldschool .search-box .form-control[b-0vsp9a5pta],
.theme-hell .search-box .input-group[b-0vsp9a5pta],
.theme-hell .search-box .input-group > *[b-0vsp9a5pta],
.theme-hell .search-box .input-group-text[b-0vsp9a5pta],
.theme-hell .search-box .form-control[b-0vsp9a5pta],
.theme-serios .search-box .input-group[b-0vsp9a5pta],
.theme-serios .search-box .input-group > *[b-0vsp9a5pta],
.theme-serios .search-box .input-group-text[b-0vsp9a5pta],
.theme-serios .search-box .form-control[b-0vsp9a5pta] {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #1f2937 !important;
}

.theme-dunkel .search-box .input-group[b-0vsp9a5pta],
.theme-dunkel .search-box .input-group > *[b-0vsp9a5pta],
.theme-dunkel .search-box .input-group-text[b-0vsp9a5pta],
.theme-dunkel .search-box .form-control[b-0vsp9a5pta] {
    background: #111418 !important;
    background-color: #111418 !important;
    color: #f3f4f6 !important;
}

.theme-oldschool .search-box .input-group[b-0vsp9a5pta],
.theme-oldschool .search-box .input-group > *[b-0vsp9a5pta],
.theme-oldschool .search-box .input-group-text[b-0vsp9a5pta],
.theme-oldschool .search-box .form-control[b-0vsp9a5pta] {
    background: #f7f7f7 !important;
    background-color: #f7f7f7 !important;
    color: #1b365d !important;
}

.theme-dunkel .search-box .input-group-text[b-0vsp9a5pta],
.theme-dunkel .search-results-dropdown .bi-arrow-right-circle[b-0vsp9a5pta],
.theme-dunkel .search-results-dropdown .btn-link[b-0vsp9a5pta],
.theme-hell .search-box .input-group-text[b-0vsp9a5pta],
.theme-hell .search-results-dropdown .bi-arrow-right-circle[b-0vsp9a5pta],
.theme-hell .search-results-dropdown .btn-link[b-0vsp9a5pta] {
    color: var(--racing-orange) !important;
}

.theme-serios .search-box .input-group-text[b-0vsp9a5pta],
.theme-serios .search-results-dropdown .bi-arrow-right-circle[b-0vsp9a5pta],
.theme-serios .search-results-dropdown .btn-link[b-0vsp9a5pta] {
    color: #b91c1c !important;
}

.theme-oldschool .search-box .input-group-text[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown .bi-arrow-right-circle[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown .btn-link[b-0vsp9a5pta] {
    color: #2f5f96 !important;
}

.theme-dunkel .search-box .form-control[b-0vsp9a5pta]::placeholder,
.theme-oldschool .search-box .form-control[b-0vsp9a5pta]::placeholder,
.theme-hell .search-box .form-control[b-0vsp9a5pta]::placeholder,
.theme-serios .search-box .form-control[b-0vsp9a5pta]::placeholder {
    color: #6b7280 !important;
}

.theme-dunkel .search-results-dropdown[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown[b-0vsp9a5pta],
.theme-hell .search-results-dropdown[b-0vsp9a5pta],
.theme-serios .search-results-dropdown[b-0vsp9a5pta] {
    background: #ffffff !important;
    border-color: rgba(255,107,0,0.35) !important;
    box-shadow: 0 18px 42px rgba(15,23,42,0.16) !important;
}

.theme-dunkel .search-results-dropdown[b-0vsp9a5pta] {
    background: #111418 !important;
    border-color: rgba(255,255,255,0.08) !important;
    box-shadow: 0 18px 42px rgba(0,0,0,0.5) !important;
}

.theme-oldschool .search-results-dropdown[b-0vsp9a5pta] {
    background: #ffffff !important;
    border-color: #7f9db9 !important;
    box-shadow: 0 3px 10px rgba(47,95,150,0.18) !important;
}

.theme-serios .search-results-dropdown[b-0vsp9a5pta] {
    border-color: #b91c1c !important;
}

.theme-dunkel .search-results-header[b-0vsp9a5pta] {
    background: #181b20 !important;
    border-color: rgba(255,255,255,0.08) !important;
    color: var(--racing-orange) !important;
}

.theme-hell .search-results-header[b-0vsp9a5pta] {
    background: #fff3ea !important;
    border-color: rgba(255,107,0,0.2) !important;
    color: var(--racing-orange) !important;
}

.theme-serios .search-results-header[b-0vsp9a5pta] {
    background: #fef2f2 !important;
    border-color: rgba(185,28,28,0.2) !important;
    color: #991b1b !important;
}

.theme-oldschool .search-results-header[b-0vsp9a5pta] {
    background: linear-gradient(180deg, #eaf2fb 0%, #d6e4f5 100%) !important;
    border-color: #b7cde6 !important;
    color: #1b365d !important;
}

.theme-dunkel .search-result-item[b-0vsp9a5pta],
.theme-dunkel .search-results-footer[b-0vsp9a5pta],
.theme-oldschool .search-result-item[b-0vsp9a5pta],
.theme-oldschool .search-results-footer[b-0vsp9a5pta],
.theme-hell .search-result-item[b-0vsp9a5pta],
.theme-hell .search-results-footer[b-0vsp9a5pta],
.theme-serios .search-result-item[b-0vsp9a5pta],
.theme-serios .search-results-footer[b-0vsp9a5pta] {
    background: #ffffff !important;
    color: #111827 !important;
    border-color: #eef0f3 !important;
}

.theme-dunkel .search-result-item[b-0vsp9a5pta],
.theme-dunkel .search-results-footer[b-0vsp9a5pta] {
    background: #111418 !important;
    color: #f3f4f6 !important;
    border-color: rgba(255,255,255,0.08) !important;
}

.theme-oldschool .search-result-item[b-0vsp9a5pta],
.theme-oldschool .search-results-footer[b-0vsp9a5pta] {
    background: #ffffff !important;
    color: #1b365d !important;
    border-color: #d9e4f2 !important;
}

.theme-dunkel .search-results-dropdown strong[b-0vsp9a5pta],
.theme-dunkel .search-results-dropdown small[b-0vsp9a5pta],
.theme-dunkel .search-results-dropdown .text-muted[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown strong[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown small[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown .text-muted[b-0vsp9a5pta],
.theme-hell .search-results-dropdown strong[b-0vsp9a5pta],
.theme-hell .search-results-dropdown small[b-0vsp9a5pta],
.theme-hell .search-results-dropdown .text-muted[b-0vsp9a5pta],
.theme-serios .search-results-dropdown strong[b-0vsp9a5pta],
.theme-serios .search-results-dropdown small[b-0vsp9a5pta],
.theme-serios .search-results-dropdown .text-muted[b-0vsp9a5pta] {
    color: #374151 !important;
}

.theme-dunkel .search-results-dropdown strong[b-0vsp9a5pta],
.theme-dunkel .search-results-dropdown small[b-0vsp9a5pta],
.theme-dunkel .search-results-dropdown .text-muted[b-0vsp9a5pta] {
    color: #d1d5db !important;
}

.theme-oldschool .search-results-dropdown strong[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown small[b-0vsp9a5pta],
.theme-oldschool .search-results-dropdown .text-muted[b-0vsp9a5pta] {
    color: #4c6580 !important;
}

.theme-dunkel .search-result-item:hover[b-0vsp9a5pta] {
    background: #181b20 !important;
}

.theme-oldschool .search-result-item:hover[b-0vsp9a5pta] {
    background: #eef4fb !important;
}

.theme-hell .search-result-item:hover[b-0vsp9a5pta] {
    background: #fff3ea !important;
}

.theme-dunkel .search-result-item[b-0vsp9a5pta]::before,
.theme-dunkel .search-results-dropdown[b-0vsp9a5pta]::-webkit-scrollbar-thumb {
    background: var(--racing-orange) !important;
}

.theme-dunkel .search-box .btn-outline-secondary[b-0vsp9a5pta] {
    background: #ff6b00 !important;
    color: #ffffff !important;
    border-color: #ff6b00 !important;
}

.theme-dunkel .search-box .btn-outline-secondary:hover[b-0vsp9a5pta] {
    background: #ff8c42 !important;
}

.theme-oldschool .search-result-item[b-0vsp9a5pta]::before,
.theme-oldschool .search-results-dropdown[b-0vsp9a5pta]::-webkit-scrollbar-thumb {
    background: #3b6ea5 !important;
}

.theme-oldschool .search-box .btn-outline-secondary[b-0vsp9a5pta] {
    background: linear-gradient(180deg, #fdfefe 0%, #d7e5f5 100%) !important;
    color: #1b365d !important;
    border-color: #7f9db9 !important;
}

.theme-oldschool .search-box .btn-outline-secondary:hover[b-0vsp9a5pta] {
    background: linear-gradient(180deg, #ffffff 0%, #c8dbf1 100%) !important;
}

.theme-serios .search-result-item:hover[b-0vsp9a5pta] {
    background: #f3f4f6 !important;
}

.theme-serios .search-result-item[b-0vsp9a5pta]::before,
.theme-serios .search-results-dropdown[b-0vsp9a5pta]::-webkit-scrollbar-thumb {
    background: #b91c1c !important;
}

.theme-serios .search-box .btn-outline-secondary[b-0vsp9a5pta] {
    background: #b91c1c !important;
    color: #ffffff !important;
}

.theme-serios .search-box .btn-outline-secondary:hover[b-0vsp9a5pta] {
    background: #991b1b !important;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-40lpokz9f2] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-40lpokz9f2] {
    flex: 1;
    background: #1e1e1e;
}

.sidebar[b-40lpokz9f2] {
    background: linear-gradient(180deg, #1a1d23 0%, #14171c 100%) !important;
    border-right: 1px solid rgba(255,107,0,0.25) !important;
}

.top-row[b-40lpokz9f2] {
    background: linear-gradient(180deg, #1a1d23 0%, #14171c 100%) !important;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #ff6b00, #ff8c42 50%, #c0c0c0) 1;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: relative;
}

.top-row[b-40lpokz9f2]::before {
    display: none;
}

    .top-row[b-40lpokz9f2]  a, .top-row[b-40lpokz9f2]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: #c0c0c0;
    }

    .top-row[b-40lpokz9f2]  a:hover, .top-row[b-40lpokz9f2]  .btn-link:hover {
        text-decoration: none;
        color: #ff8c42;
    }

    .top-row[b-40lpokz9f2]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Mobile First - Stacked Layout */
@media (max-width: 640px) {
    .page[b-40lpokz9f2] {
        flex-direction: column;
    }
    
    .top-row[b-40lpokz9f2] {
        justify-content: center;
        padding-left: 3.5rem !important;
        padding-right: 1rem !important;
    }

    .top-row[b-40lpokz9f2]  a, .top-row[b-40lpokz9f2]  .btn-link {
        margin-left: 0.5rem;
        font-size: 0.9rem;
    }
    
    .sidebar[b-40lpokz9f2] {
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -300px;
        z-index: 2000;
        transition: left 0.3s ease;
    }
    
    main[b-40lpokz9f2] {
        width: 100%;
        margin-left: 0;
    }
    
    .top-row[b-40lpokz9f2], article[b-40lpokz9f2] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Compact screens */
@media (min-width: 641px) and (max-width: 1280px) {
    .page[b-40lpokz9f2] {
        flex-direction: row;
    }

    .sidebar[b-40lpokz9f2] {
        width: 250px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -250px;
        z-index: 2000;
        transition: left 0.3s ease;
    }
    
    main[b-40lpokz9f2] {
        margin-left: 0;
        width: 100%;
        transition: margin-left 0.3s ease;
    }

    .top-row[b-40lpokz9f2] {
        position: sticky;
        top: 0;
        z-index: 1;
        padding-left: 4rem !important;
    }

    .top-row[b-40lpokz9f2], article[b-40lpokz9f2] {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Desktop */
@media (min-width: 1281px) {
    .page[b-40lpokz9f2] {
        flex-direction: row;
    }

    .sidebar[b-40lpokz9f2] {
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
    }

    .top-row[b-40lpokz9f2] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-40lpokz9f2]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    main[b-40lpokz9f2] {
        margin-left: 300px;
    }

    .top-row[b-40lpokz9f2], article[b-40lpokz9f2] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-40lpokz9f2] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-40lpokz9f2] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-h8zeioxh1v] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 3.5rem;
    color: white;
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    border: 2px solid var(--racing-orange);
    background: linear-gradient(135deg, var(--racing-orange) 0%, var(--racing-orange-dark) 100%) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem;
    border-radius: 8px;
    z-index: 2001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
}

.navbar-toggler:checked[b-h8zeioxh1v] {
    background: linear-gradient(135deg, var(--racing-red) 0%, #cc0000 100%) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e") no-repeat center/1.5rem;
    border-color: var(--racing-red);
    transform: rotate(90deg);
}

.top-row[b-h8zeioxh1v] {
    min-height: 3.5rem;
    background: linear-gradient(180deg, #1a1d23 0%, #14171c 100%) !important;
    background-image: linear-gradient(180deg, #1a1d23 0%, #14171c 100%) !important;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, #ff6b00, #ff8c42 50%, #c0c0c0) 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navbar-brand[b-h8zeioxh1v] {
    font-size: 1.1rem;
}

.bi[b-h8zeioxh1v] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-h8zeioxh1v] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-h8zeioxh1v] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-h8zeioxh1v] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-h8zeioxh1v] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-h8zeioxh1v] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-h8zeioxh1v] {
        padding-bottom: 1rem;
    }

.nav-category-items .nav-sub-link[b-h8zeioxh1v] {
    margin: 1px 0;
}

.nav-category-items .nav-sub-link:first-of-type[b-h8zeioxh1v] {
    margin-top: 0;
}

.nav-category-items .nav-sub-link:last-of-type[b-h8zeioxh1v] {
    margin-bottom: 0;
}

    .nav-item[b-h8zeioxh1v]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-h8zeioxh1v]  a.active {
    background: var(--nav-active-bg, #ff6b00) !important;
    background-color: var(--nav-active-bg, #ff6b00) !important;
    color: white !important;
    border-color: var(--nav-active-border, #ff6b00) !important;
}

.nav-item[b-h8zeioxh1v]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-h8zeioxh1v] {
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

/* Desktop - Always show sidebar */
@media (min-width: 1281px) {
    .nav-scrollable[b-h8zeioxh1v] {
        height: calc(100vh - 3.5rem);
    }
}

/* The sidebar itself controls visibility on compact screens and mobile. */
@media (min-width: 641px) and (max-width: 1280px) {
    .nav-scrollable[b-h8zeioxh1v] {
        height: calc(100vh - 3.5rem);
    }
}

/* Mobile - Full overlay behavior */
@media (max-width: 640px) {
    .nav-scrollable[b-h8zeioxh1v] {
        height: calc(100vh - 3.5rem);
    }
}

/* Legal links (Impressum / Datenschutz) */
.nav-legal-link[b-h8zeioxh1v] {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-legal-link:hover[b-h8zeioxh1v] {
    color: var(--racing-orange, #ff6b00);
    text-decoration: none;
}

.nav-item[b-h8zeioxh1v]  .dashboard-highlight-button,
.nav-item[b-h8zeioxh1v]  .dashboard-highlight-button.active,
.nav-item[b-h8zeioxh1v]  .dashboard-highlight-button:hover {
    background: var(--nav-dashboard-bg, #ff6b00) !important;
    background-color: var(--nav-dashboard-bg, #ff6b00) !important;
    border: 2px solid var(--nav-dashboard-border, #ff6b00) !important;
    color: #fff !important;
    box-shadow: var(--nav-dashboard-shadow, 0 4px 14px rgba(255, 107, 0, 0.35)) !important;
}

.nav-item[b-h8zeioxh1v]  .dashboard-highlight-button:hover {
    background: var(--nav-dashboard-hover-bg, #ff8c42) !important;
    background-color: var(--nav-dashboard-hover-bg, #ff8c42) !important;
}

.nav-item[b-h8zeioxh1v]  .dashboard-highlight-button:active {
    transform: translateY(2px) !important;
    box-shadow: none !important;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-yig0m199zk],
.components-reconnect-repeated-attempt-visible[b-yig0m199zk],
.components-reconnect-failed-visible[b-yig0m199zk],
.components-pause-visible[b-yig0m199zk],
.components-resume-failed-visible[b-yig0m199zk],
.components-rejoining-animation[b-yig0m199zk] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-retrying[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-failed[b-yig0m199zk],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-yig0m199zk] {
    display: block;
}


#components-reconnect-modal[b-yig0m199zk] {
    background-color: white;
    width: min(20rem, calc(100vw - 2rem));
    margin: min(20vh, 2rem) auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-yig0m199zk 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-yig0m199zk 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-yig0m199zk 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-yig0m199zk]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-yig0m199zk 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-yig0m199zk {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-yig0m199zk {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-yig0m199zk {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-yig0m199zk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-yig0m199zk] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-yig0m199zk] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-yig0m199zk] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-yig0m199zk] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-yig0m199zk] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-yig0m199zk] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-yig0m199zk 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-yig0m199zk] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-yig0m199zk {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
