/* /Components/Dashboard/DashboardConfigModal.razor.rz.scp.css */
/* Mobile-friendly layout for dashboard config modal */

/* On mobile, action buttons row takes full width */
@media (max-width: 575.98px) {
    .w-100.w-sm-auto[b-g4l1y4jago] {
        width: 100% !important;
    }
}

/* On larger screens, action buttons row is auto width */
@media (min-width: 576px) {
    .w-sm-auto[b-g4l1y4jago] {
        width: auto !important;
    }
}

/* Ensure modal doesn't overflow on mobile */
@media (max-width: 575.98px) {
    [b-g4l1y4jago] .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100vw - 1rem);
    }
}

[b-g4l1y4jago] .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

/* Smaller buttons on mobile for better fit */
@media (max-width: 575.98px) {
    .list-group-item .btn-group .btn[b-g4l1y4jago] {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }

    .list-group-item .btn-group-sm .btn[b-g4l1y4jago] {
        padding: 0.2rem 0.35rem;
    }
}
/* /Components/Dashboard/DeckMatchupsWidget.razor.rz.scp.css */
/* Constrain deck selector width on mobile to prevent horizontal overflow */
@media (max-width: 640.98px) {
    .card-header select[b-l341gy1jrc] {
        max-width: 55%;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ig1jz0364g] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ig1jz0364g] {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content[b-ig1jz0364g] {
    flex: 1;
}

.sidebar[b-ig1jz0364g] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

/* ==========================================
   MOBILE MENU BUTTON & BRAND
   ========================================== */
.mobile-menu-btn[b-ig1jz0364g] {
    display: none;
}

.mobile-brand[b-ig1jz0364g] {
    display: none;
}

/* ==========================================
   SIDEBAR OVERLAY
   ========================================== */
.sidebar-overlay[b-ig1jz0364g] {
    display: none;
}

.top-row[b-ig1jz0364g] {
    background: var(--top-row-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--top-row-border);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

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

    .top-row[b-ig1jz0364g]  a:hover, .top-row[b-ig1jz0364g]  .btn-link:hover {
        text-decoration: underline;
    }

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

@media (max-width: 640.98px) {
    /* Ensure main content comes first visually */
    main[b-ig1jz0364g] {
        order: -1;
        /* Space for bottom navigation bar */
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px) * 0.5);
    }

    /* Mobile drawer sidebar */
    .sidebar[b-ig1jz0364g] {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        z-index: 1300;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    /* Sidebar open state */
    .sidebar:has(#navMenuToggle:checked)[b-ig1jz0364g] {
        transform: translateX(0);
    }

    /* Sidebar overlay */
    .sidebar-overlay[b-ig1jz0364g] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1299;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        cursor: pointer;
    }

    .sidebar:has(#navMenuToggle:checked) ~ .sidebar-overlay[b-ig1jz0364g] {
        opacity: 1;
        pointer-events: auto;
    }

    /* Mobile menu button (hamburger) */
    .mobile-menu-btn[b-ig1jz0364g] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.5rem;
        height: 2.5rem;
        cursor: pointer;
        border-radius: 6px;
        transition: background 0.2s ease;
        flex-shrink: 0;
    }

    .mobile-menu-btn:hover[b-ig1jz0364g] {
        background: var(--bg-hover, rgba(0, 0, 0, 0.1));
    }

    .hamburger-icon[b-ig1jz0364g] {
        display: block;
        width: 1.25rem;
        height: 2px;
        background: var(--text-primary, #212529);
        position: relative;
        border-radius: 2px;
        transition: background 0.2s ease;
    }

    .hamburger-icon[b-ig1jz0364g]::before,
    .hamburger-icon[b-ig1jz0364g]::after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--text-primary, #212529);
        border-radius: 2px;
        transition: transform 0.3s ease;
    }

    .hamburger-icon[b-ig1jz0364g]::before {
        top: -6px;
    }

    .hamburger-icon[b-ig1jz0364g]::after {
        top: 6px;
    }

    /* Mobile brand (logo + name) */
    .mobile-brand[b-ig1jz0364g] {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary, #212529);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .mobile-brand span[b-ig1jz0364g] {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-logo[b-ig1jz0364g] {
        width: 28px;
        height: 28px;
        border-radius: 6px;
        flex-shrink: 0;
    }

    .top-row[b-ig1jz0364g] {
        justify-content: space-between;
        position: sticky;
        top: 0;
        z-index: 1200;
        gap: 0.5rem;
    }

    .top-row[b-ig1jz0364g]  a, .top-row[b-ig1jz0364g]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ig1jz0364g] {
        flex-direction: row;
    }

    .sidebar[b-ig1jz0364g] {
        /* Collapsed width by default */
        width: 60px;
        height: 100vh;
        position: sticky;
        top: 0;
        flex-shrink: 0;
        transition: width 0.2s ease;
        overflow: hidden;
    }

    /* Expanded sidebar when checkbox is checked */
    .sidebar:has(.navbar-toggler:checked)[b-ig1jz0364g] {
        width: 220px;
    }

    main[b-ig1jz0364g] {
        flex: 1;
        min-width: 0;
        min-height: 100vh;
    }

    .top-row[b-ig1jz0364g] {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

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

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

#blazor-error-ui[b-ig1jz0364g] {
    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-ig1jz0364g] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.footer[b-ig1jz0364g] {
    border-top: 1px solid var(--top-row-border, #dee2e6);
    margin-top: auto;
    background: var(--top-row-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 640.98px) {
    .footer[b-ig1jz0364g] {
        display: none;
    }
}

    .footer a[b-ig1jz0364g] {
        color: var(--text-secondary);
        transition: all 0.2s ease;
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
    }

    .footer a:hover[b-ig1jz0364g] {
        color: var(--accent-primary);
        background: var(--bg-hover);
    }

    .footer .bi-discord[b-ig1jz0364g] {
        color: #5865F2;
        font-size: 1.2rem;
    }

    .footer .bi-discord:hover[b-ig1jz0364g] {
        color: #7289da;
    }
/* /Components/Layout/MobileBottomNav.razor.rz.scp.css */
/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav[b-tg3ywznxqc] {
    display: none;
}

@media (max-width: 640.98px) {
    .mobile-bottom-nav[b-tg3ywznxqc] {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        /* Safe area for notched phones - reduced padding */
        padding-bottom: calc(env(safe-area-inset-bottom, 0px) * 0.5);
        background: var(--top-row-bg, rgba(255, 255, 255, 0.85));
        border-top: 1px solid var(--top-row-border, rgba(148, 163, 184, 0.2));
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        z-index: 1200;
        justify-content: space-around;
        align-items: stretch;
    }

    .mobile-bottom-nav[b-tg3ywznxqc]  .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        min-height: 72px;
        padding: 10px 4px;
        color: var(--text-secondary, #64748b);
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 500;
        gap: 4px;
        transition: all 0.2s ease;
        border-radius: 0;
        margin: 0;
    }

    .mobile-bottom-nav[b-tg3ywznxqc]  .bottom-nav-item i {
        font-size: 1.4rem;
        line-height: 1;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .mobile-bottom-nav[b-tg3ywznxqc]  .bottom-nav-item span {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        text-align: center;
        line-height: 1.2;
    }

    .mobile-bottom-nav[b-tg3ywznxqc]  .bottom-nav-item:hover {
        color: var(--accent-primary, #6366f1);
        background: var(--bg-hover, rgba(99, 102, 241, 0.08));
    }

    .mobile-bottom-nav[b-tg3ywznxqc]  .bottom-nav-item:active {
        transform: scale(0.95);
    }

    /* Active state */
    .mobile-bottom-nav[b-tg3ywznxqc]  .bottom-nav-item.active {
        color: var(--accent-primary, #6366f1);
        background: var(--bg-hover, rgba(99, 102, 241, 0.08));
    }

    .mobile-bottom-nav[b-tg3ywznxqc]  .bottom-nav-item.active i {
        transform: scale(1.1);
    }
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* ==========================================
   NAVBAR TOGGLER (hidden checkbox)
   ========================================== */
.navbar-toggler[b-kravj58pyo] {
    appearance: none;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* ==========================================
   TOP ROW (header)
   ========================================== */
.top-row[b-kravj58pyo] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    overflow: hidden;
    gap: 0.5rem;
}

.top-row .navbar-brand[b-kravj58pyo] {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
}

.navbar-logo[b-kravj58pyo] {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* Menu toggle button (label for checkbox) */
.menu-toggle-btn[b-kravj58pyo] {
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    flex-shrink: 0;
    background: 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.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center;
    background-size: contain;
    border: none;
    border-radius: 4px;
}

.menu-toggle-btn:hover[b-kravj58pyo] {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   ICONS
   ========================================== */
[b-kravj58pyo] .bi {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    background-size: cover;
}

[b-kravj58pyo] .bi-house-door-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' 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");
}

[b-kravj58pyo] .bi-collection-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 13a1.5 1.5 0 0 0 1.5 1.5h13A1.5 1.5 0 0 0 16 13V6a1.5 1.5 0 0 0-1.5-1.5h-13A1.5 1.5 0 0 0 0 6v7zM2 3a.5.5 0 0 0 .5.5h11a.5.5 0 0 0 0-1h-11A.5.5 0 0 0 2 3zm2-2a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 0-1h-7A.5.5 0 0 0 4 1z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-controller-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M11.5 6.027a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm-6.5-3h1v1h1v1h-1v1h-1v-1h-1v-1h1v-1z'/%3E%3Cpath d='M3.051 3.26a.5.5 0 0 1 .354-.613l1.932-.518a.5.5 0 0 1 .62.39c.655-.079 1.35-.117 2.043-.117.72 0 1.443.041 2.12.126a.5.5 0 0 1 .622-.399l1.932.518a.5.5 0 0 1 .306.729c.14.09.266.19.373.297.408.408.78 1.05 1.095 1.772.32.733.599 1.591.805 2.466.206.875.34 1.78.364 2.606.024.816-.059 1.602-.328 2.21a1.42 1.42 0 0 1-1.445.83c-.636-.067-1.115-.394-1.513-.773-.245-.232-.496-.526-.739-.808-.126-.148-.25-.292-.368-.423-.728-.804-1.597-1.527-3.224-1.527-1.627 0-2.496.723-3.224 1.527-.119.131-.242.275-.368.423-.243.282-.494.576-.739.808-.398.38-.877.706-1.513.773a1.42 1.42 0 0 1-1.445-.83c-.27-.608-.352-1.394-.328-2.21.024-.826.158-1.73.364-2.606.206-.875.486-1.733.805-2.466.315-.722.687-1.364 1.094-1.772a2.34 2.34 0 0 1 .433-.335.504.504 0 0 1-.028-.079z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-graph-up-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M0 0h1v15h15v1H0V0Zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07Z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-people-fill-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1H7Zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm-5.784 6A2.238 2.238 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.325 6.325 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1h4.216ZM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5Z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-gear-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z'/%3E%3Cpath d='M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-stopwatch-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.5 5.6a.5.5 0 1 0-1 0v2.9h-3a.5.5 0 0 0 0 1H8a.5.5 0 0 0 .5-.5V5.6z'/%3E%3Cpath d='M6.5 1A.5.5 0 0 1 7 .5h2a.5.5 0 0 1 0 1v.57c1.36.196 2.594.78 3.584 1.64a.715.715 0 0 1 .012-.013l.354-.354a.5.5 0 1 1 .707.707l-.353.354-.013.012A7 7 0 1 1 1 8a6.973 6.973 0 0 1 1.086-3.757l-.353-.354a.5.5 0 1 1 .707-.707l.354.354.012.012A6.972 6.972 0 0 1 6.5 2.071V1.5a.5.5 0 0 1-.5-.5zm1.5 2a6 6 0 1 0 0 12A6 6 0 0 0 8 3z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-info-circle-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-discord-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z'/%3E%3C/svg%3E");
}

[b-kravj58pyo] .bi-heart-nav-menu {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z'/%3E%3C/svg%3E");
}

/* ==========================================
   MOBILE-ONLY ITEMS (hidden by default)
   ========================================== */
.mobile-only[b-kravj58pyo] {
    display: none;
}

/* ==========================================
   NAV SCROLLABLE
   ========================================== */
.nav-scrollable[b-kravj58pyo] {
    display: none;
    overflow-x: hidden;
}

.navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo] {
    display: flex;
    flex-direction: column;
}

/* ==========================================
   NAV ITEMS
   ========================================== */
.nav-item[b-kravj58pyo] {
    font-size: 0.9rem;
}

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

.nav-item[b-kravj58pyo]  .nav-link {
    color: #d7d7d7;
    background: none;
    border: none;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
    width: 100%;
    white-space: nowrap;
}

.nav-item[b-kravj58pyo]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

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

[b-kravj58pyo] .nav-link-text {
    overflow: hidden;
}

/* ==========================================
   NAV FOOTER
   ========================================== */
.nav-scrollable[b-kravj58pyo]  .nav-footer {
    margin-top: auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-scrollable[b-kravj58pyo]  .user-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.nav-scrollable[b-kravj58pyo]  .user-info {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.nav-scrollable[b-kravj58pyo]  .settings-btn {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-scrollable[b-kravj58pyo]  .settings-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-scrollable[b-kravj58pyo]  .settings-btn .bi {
    width: 1.25rem;
    height: 1.25rem;
}

.nav-scrollable[b-kravj58pyo]  .user-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.nav-scrollable[b-kravj58pyo]  .user-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.nav-scrollable[b-kravj58pyo]  .user-details .fw-bold {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-scrollable[b-kravj58pyo]  .logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.nav-scrollable[b-kravj58pyo]  .logout-icon {
    font-size: 1rem;
}

/* ==========================================
   MOBILE USER HEADER (hidden by default)
   ========================================== */
.mobile-user-header[b-kravj58pyo] {
    display: none;
}

/* ==========================================
   MOBILE STYLES (default)
   ========================================== */
@media (max-width: 640.98px) {
    /* Hide the header in the drawer - logo is in MainLayout */
    .top-row[b-kravj58pyo] {
        display: none;
    }

    /* Hide the toggle button - we use MainLayout's hamburger */
    .menu-toggle-btn[b-kravj58pyo] {
        display: none;
    }

    /* Always show nav-scrollable on mobile - sidebar slides in/out */
    .nav-scrollable[b-kravj58pyo] {
        display: flex;
        flex-direction: column;
        height: 100vh;
        height: 100dvh;
    }

    /* Hide items that are in bottom nav */
    .nav-item.hide-on-mobile[b-kravj58pyo] {
        display: none;
    }

    /* Show mobile-only items */
    .nav-item.mobile-only[b-kravj58pyo] {
        display: block;
    }

    /* Hide desktop-only elements */
    .desktop-only[b-kravj58pyo] {
        display: none !important;
    }

    /* Show mobile user header at top */
    .mobile-user-header[b-kravj58pyo] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .mobile-user-header .user-icon[b-kravj58pyo] {
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .mobile-user-header .user-details[b-kravj58pyo] {
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-user-header .user-details .fw-bold[b-kravj58pyo] {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-user-header .text-muted[b-kravj58pyo] {
        color: rgba(255, 255, 255, 0.6) !important;
        font-size: 0.75rem;
    }

    /* Push logout button up on mobile */
    .nav-scrollable[b-kravj58pyo]  .nav-footer {
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px) + 1rem);
    }
}

/* ==========================================
   DESKTOP STYLES
   ========================================== */
@media (min-width: 641px) {
    /* Always show nav-scrollable on desktop */
    .nav-scrollable[b-kravj58pyo] {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 3.5rem);
    }

    /* COLLAPSED STATE (default on desktop) */
    .top-row[b-kravj58pyo] {
        justify-content: center;
    }

    .top-row .navbar-brand[b-kravj58pyo] {
        display: none !important;
    }

    .menu-toggle-btn[b-kravj58pyo] {
        display: block;
    }

    .nav-item[b-kravj58pyo]  .nav-link {
        justify-content: center;
        padding: 0;
    }

    [b-kravj58pyo] .nav-link-text {
        display: none;
    }

    .nav-scrollable[b-kravj58pyo]  .user-details {
        display: none;
    }

    .nav-scrollable[b-kravj58pyo]  .logout-btn {
        padding: 0.5rem;
        width: auto;
    }

    .nav-scrollable[b-kravj58pyo]  .logout-text {
        display: none;
    }

    .nav-scrollable[b-kravj58pyo]  .nav-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.75rem 0.5rem;
    }

    .nav-scrollable[b-kravj58pyo]  .user-info {
        margin-bottom: 0;
    }

    .nav-scrollable[b-kravj58pyo]  .user-info-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-scrollable[b-kravj58pyo]  .user-info {
        justify-content: center;
    }

    .nav-scrollable[b-kravj58pyo]  .settings-btn {
        display: flex;
    }

    /* EXPANDED STATE */
    .navbar-toggler:checked ~ .top-row[b-kravj58pyo] {
        justify-content: space-between;
    }

    .navbar-toggler:checked ~ .top-row .navbar-brand[b-kravj58pyo] {
        display: block !important;
    }

    .navbar-toggler:checked ~ .nav-scrollable .nav-item[b-kravj58pyo]  .nav-link {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo]  .nav-link-text {
        display: inline;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo]  .user-details {
        display: flex;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo]  .logout-btn {
        width: 100%;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo]  .logout-text {
        display: inline;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo]  .nav-footer {
        align-items: stretch;
        padding: 1rem;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo]  .user-info-row {
        flex-direction: row;
    }

    .navbar-toggler:checked ~ .nav-scrollable[b-kravj58pyo]  .settings-btn {
        display: flex;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-95isfahbph],
.components-reconnect-repeated-attempt-visible[b-95isfahbph],
.components-reconnect-failed-visible[b-95isfahbph],
.components-pause-visible[b-95isfahbph],
.components-resume-failed-visible[b-95isfahbph],
.components-rejoining-animation[b-95isfahbph] {
    display: none;
}

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


#components-reconnect-modal[b-95isfahbph] {
    background-color: white;
    width: 20rem;
    margin: 20vh 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-95isfahbph 0.5s both;
    &[open]

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

@keyframes components-rejoining-animation-b-95isfahbph {
    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;
    }
}
/* /Components/Layout/WelcomeLayout.razor.rz.scp.css */
.welcome-layout[b-2dh77bft3s] {
    min-height: 100vh;
}
/* /Components/Pages/Account/ConfirmEmail.razor.rz.scp.css */
.confirm-email-container[b-zo45rxdn0v] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-body);
}

.confirm-email-card[b-zo45rxdn0v] {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.loading-state[b-zo45rxdn0v],
.success-state[b-zo45rxdn0v],
.error-state[b-zo45rxdn0v] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner[b-zo45rxdn0v] {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: #e94560;
    border-radius: 50%;
    animation: spin-b-zo45rxdn0v 1s linear infinite;
}

@keyframes spin-b-zo45rxdn0v {
    to {
        transform: rotate(360deg);
    }
}

.icon-circle[b-zo45rxdn0v] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle.success[b-zo45rxdn0v] {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.icon-circle.error[b-zo45rxdn0v] {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
}

h2[b-zo45rxdn0v] {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.5rem;
}

p[b-zo45rxdn0v] {
    color: var(--text-secondary);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.6;
}

.btn-primary[b-zo45rxdn0v],
.btn-secondary[b-zo45rxdn0v] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary[b-zo45rxdn0v] {
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    color: #ffffff;
}

.btn-primary:hover[b-zo45rxdn0v] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    color: #ffffff;
}

.btn-secondary[b-zo45rxdn0v] {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover[b-zo45rxdn0v] {
    background: var(--bg-hover);
}

.error-actions[b-zo45rxdn0v] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .confirm-email-card[b-zo45rxdn0v] {
        padding: 2rem;
    }

    .error-actions[b-zo45rxdn0v] {
        flex-direction: column;
        width: 100%;
    }

    .error-actions a[b-zo45rxdn0v] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/Pages/Account/ConfirmEmailChange.razor.rz.scp.css */
.confirm-email-container[b-61g197zfa4] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-body);
}

.confirm-email-card[b-61g197zfa4] {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.loading-state[b-61g197zfa4],
.success-state[b-61g197zfa4],
.error-state[b-61g197zfa4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner[b-61g197zfa4] {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-color);
    border-top-color: #e94560;
    border-radius: 50%;
    animation: spin-b-61g197zfa4 1s linear infinite;
}

@keyframes spin-b-61g197zfa4 {
    to {
        transform: rotate(360deg);
    }
}

.icon-circle[b-61g197zfa4] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle.success[b-61g197zfa4] {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.icon-circle.error[b-61g197zfa4] {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
}

h2[b-61g197zfa4] {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.5rem;
}

p[b-61g197zfa4] {
    color: var(--text-secondary);
    margin: 0.5rem 0 1.5rem;
    line-height: 1.6;
}

.btn-primary[b-61g197zfa4],
.btn-secondary[b-61g197zfa4] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary[b-61g197zfa4] {
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    color: #ffffff;
}

.btn-primary:hover[b-61g197zfa4] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    color: #ffffff;
}

.btn-secondary[b-61g197zfa4] {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover[b-61g197zfa4] {
    background: var(--bg-hover);
}

.error-actions[b-61g197zfa4] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .confirm-email-card[b-61g197zfa4] {
        padding: 2rem;
    }

    .error-actions[b-61g197zfa4] {
        flex-direction: column;
        width: 100%;
    }

    .error-actions a[b-61g197zfa4] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/Pages/Account/ForgotPassword.razor.rz.scp.css */
.login-container[b-k0atzvncsk] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card[b-k0atzvncsk] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    color: #ffffff;
}

.login-card[b-k0atzvncsk]  h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle[b-k0atzvncsk] {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.form-group[b-k0atzvncsk] {
    margin-bottom: 1.5rem;
}

.form-group[b-k0atzvncsk]  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-control[b-k0atzvncsk] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: border-color 0.3s;
}

.form-control:focus[b-k0atzvncsk] {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.15);
}

.form-control[b-k0atzvncsk]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-submit[b-k0atzvncsk] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover:not(:disabled)[b-k0atzvncsk] {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.btn-submit:disabled[b-k0atzvncsk] {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert-danger[b-k0atzvncsk] {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b6b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.back-link[b-k0atzvncsk] {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link[b-k0atzvncsk]  a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link[b-k0atzvncsk]  a:hover {
    color: #e94560;
}

[b-k0atzvncsk] .validation-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success state */
.success-state[b-k0atzvncsk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.success-icon[b-k0atzvncsk] {
    color: #e94560;
    margin-bottom: 1rem;
}

.success-state h2[b-k0atzvncsk] {
    color: #ffffff;
    margin: 0;
}

.success-state p[b-k0atzvncsk] {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.success-state .text-muted[b-k0atzvncsk] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.spinner-border-sm[b-k0atzvncsk] {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}
/* /Components/Pages/Account/Login.razor.rz.scp.css */
.login-container[b-hurvpdyumt] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card[b-hurvpdyumt] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    color: #ffffff;
}

.login-card[b-hurvpdyumt]  h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle[b-hurvpdyumt] {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.form-group[b-hurvpdyumt] {
    margin-bottom: 1.5rem;
}

.form-group[b-hurvpdyumt]  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-control[b-hurvpdyumt] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: border-color 0.3s;
}

.form-control:focus[b-hurvpdyumt] {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.15);
}

.form-check[b-hurvpdyumt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check-input[b-hurvpdyumt] {
    width: auto;
}

.form-check-label[b-hurvpdyumt] {
    color: #a0a0a0;
}

.btn-submit[b-hurvpdyumt] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover[b-hurvpdyumt] {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.alert-danger[b-hurvpdyumt] {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b6b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.forgot-password-link[b-hurvpdyumt] {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-password-link[b-hurvpdyumt]  a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password-link[b-hurvpdyumt]  a:hover {
    color: #e94560;
}

.register-link[b-hurvpdyumt] {
    text-align: center;
    margin-top: 1rem;
    color: #a0a0a0;
}

.register-link[b-hurvpdyumt]  a {
    color: #e94560;
    text-decoration: none;
    margin-left: 0.5rem;
    font-weight: 500;
}

.register-link[b-hurvpdyumt]  a:hover {
    text-decoration: underline;
}

.back-link[b-hurvpdyumt] {
    text-align: center;
    margin-top: 1rem;
}

.back-link[b-hurvpdyumt]  a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link[b-hurvpdyumt]  a:hover {
    color: #e94560;
}

[b-hurvpdyumt] .validation-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/* /Components/Pages/Account/Register.razor.rz.scp.css */
.register-container[b-vbf7unls1s] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.register-card[b-vbf7unls1s] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    color: #ffffff;
}

.register-card[b-vbf7unls1s]  h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-subtitle[b-vbf7unls1s] {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 1.5rem;
}

.form-group[b-vbf7unls1s] {
    margin-bottom: 1.25rem;
}

.form-group[b-vbf7unls1s]  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

.form-control[b-vbf7unls1s] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: border-color 0.3s;
}

.form-control:focus[b-vbf7unls1s] {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.15);
}

.form-control[b-vbf7unls1s]::placeholder {
    color: #6a6a6a;
}

.password-hint[b-vbf7unls1s] {
    display: block;
    color: #6a6a6a;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.btn-submit[b-vbf7unls1s] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled)[b-vbf7unls1s] {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.btn-submit:disabled[b-vbf7unls1s] {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert[b-vbf7unls1s] {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
}

.alert-danger[b-vbf7unls1s] {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b6b;
}

.alert-danger ul[b-vbf7unls1s] {
    padding-left: 1.25rem;
    margin: 0;
}

.alert-danger li[b-vbf7unls1s] {
    margin-bottom: 0.25rem;
}

.alert-danger li:last-child[b-vbf7unls1s] {
    margin-bottom: 0;
}

.alert-success[b-vbf7unls1s] {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #5dd879;
}

.login-link[b-vbf7unls1s] {
    text-align: center;
    margin-top: 1.5rem;
    color: #a0a0a0;
}

.login-link[b-vbf7unls1s]  a {
    color: #e94560;
    text-decoration: none;
    margin-left: 0.5rem;
    font-weight: 500;
}

.login-link[b-vbf7unls1s]  a:hover {
    text-decoration: underline;
}

.back-link[b-vbf7unls1s] {
    text-align: center;
    margin-top: 1rem;
}

.back-link[b-vbf7unls1s]  a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.back-link[b-vbf7unls1s]  a:hover {
    color: #e94560;
}

[b-vbf7unls1s] .validation-message {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Confirmation email styles */
.confirmation-card[b-vbf7unls1s] {
    text-align: center;
}

.confirmation-icon[b-vbf7unls1s] {
    color: #e94560;
    margin-bottom: 1.5rem;
}

.confirmation-card h2[b-vbf7unls1s] {
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.confirmation-text[b-vbf7unls1s] {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.confirmation-text strong[b-vbf7unls1s] {
    color: #e94560;
}

.confirmation-hint[b-vbf7unls1s] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.confirmation-actions[b-vbf7unls1s] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.btn-secondary[b-vbf7unls1s] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    max-width: 250px;
}

.btn-secondary:hover:not(:disabled)[b-vbf7unls1s] {
    border-color: #e94560;
    background: rgba(233, 69, 96, 0.1);
}

.btn-secondary:disabled[b-vbf7unls1s] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-link[b-vbf7unls1s] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.btn-link:hover[b-vbf7unls1s] {
    color: #e94560;
}

.mt-3[b-vbf7unls1s] {
    margin-top: 1rem;
}
/* /Components/Pages/Account/ResetPassword.razor.rz.scp.css */
.login-container[b-kzl161zehg] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card[b-kzl161zehg] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 400px;
    color: #ffffff;
}

.login-card[b-kzl161zehg]  h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle[b-kzl161zehg] {
    text-align: center;
    color: #a0a0a0;
    margin-bottom: 2rem;
}

.form-group[b-kzl161zehg] {
    margin-bottom: 1.5rem;
}

.form-group[b-kzl161zehg]  label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-control[b-kzl161zehg] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    transition: border-color 0.3s;
}

.form-control:focus[b-kzl161zehg] {
    outline: none;
    border-color: #e94560;
    background: rgba(255, 255, 255, 0.15);
}

.password-requirements[b-kzl161zehg] {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.password-requirements small[b-kzl161zehg] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
}

.btn-submit[b-kzl161zehg] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover:not(:disabled)[b-kzl161zehg] {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.btn-submit:disabled[b-kzl161zehg] {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert-danger[b-kzl161zehg] {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b6b;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.back-link[b-kzl161zehg] {
    text-align: center;
    margin-top: 1.5rem;
}

.back-link[b-kzl161zehg]  a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link[b-kzl161zehg]  a:hover {
    color: #e94560;
}

[b-kzl161zehg] .validation-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Loading state */
.loading-state[b-kzl161zehg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.spinner[b-kzl161zehg] {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #e94560;
    border-radius: 50%;
    animation: spin-b-kzl161zehg 1s linear infinite;
}

@keyframes spin-b-kzl161zehg {
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.success-state[b-kzl161zehg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.icon-circle[b-kzl161zehg] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.icon-circle.success[b-kzl161zehg] {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.icon-circle.error[b-kzl161zehg] {
    background: rgba(233, 69, 96, 0.2);
    color: #e94560;
}

.success-state h2[b-kzl161zehg],
.error-state h2[b-kzl161zehg] {
    color: #ffffff;
    margin: 0;
}

.success-state p[b-kzl161zehg],
.error-state p[b-kzl161zehg] {
    color: rgba(255, 255, 255, 0.7);
    margin: 0.5rem 0;
    line-height: 1.6;
}

.btn-primary[b-kzl161zehg] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    color: #ffffff;
    transition: all 0.2s ease;
}

.btn-primary:hover[b-kzl161zehg] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

/* Error state */
.error-state[b-kzl161zehg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.error-actions[b-kzl161zehg] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.spinner-border-sm[b-kzl161zehg] {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}

@media (max-width: 480px) {
    .login-card[b-kzl161zehg] {
        padding: 2rem;
    }

    .error-actions[b-kzl161zehg] {
        flex-direction: column;
        width: 100%;
    }

    .error-actions a[b-kzl161zehg] {
        width: 100%;
        text-align: center;
    }
}
/* /Components/Pages/Settings.razor.rz.scp.css */
.settings-container[b-23c532h9sp] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.settings-container h1[b-23c532h9sp] {
    margin-bottom: 2rem;
    color: #333;
}

.settings-section[b-23c532h9sp] {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.settings-section h2[b-23c532h9sp] {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.setting-item[b-23c532h9sp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.setting-item:not(:last-child)[b-23c532h9sp] {
    border-bottom: 1px solid #f1f3f4;
}

.setting-info[b-23c532h9sp] {
    flex: 1;
}

.setting-info label[b-23c532h9sp] {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.25rem;
}

.setting-info small[b-23c532h9sp] {
    color: #6c757d;
    font-size: 0.85rem;
}

.setting-control[b-23c532h9sp] {
    margin-left: 2rem;
}

.form-select[b-23c532h9sp] {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    min-width: 150px;
}

.form-select:focus[b-23c532h9sp] {
    outline: none;
    border-color: #1b6ec2;
    box-shadow: 0 0 0 2px rgba(27, 110, 194, 0.2);
}

/* Toggle switch */
.switch[b-23c532h9sp] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input[b-23c532h9sp] {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider[b-23c532h9sp] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

.slider[b-23c532h9sp]:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

input:checked + .slider[b-23c532h9sp] {
    background-color: #1b6ec2;
}

input:checked + .slider[b-23c532h9sp]:before {
    transform: translateX(24px);
}

/* Save notification */
.save-notification[b-23c532h9sp] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #28a745;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn-b-23c532h9sp 0.3s ease;
    z-index: 1000;
}

@keyframes slideIn-b-23c532h9sp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.loading[b-23c532h9sp] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    color: #6c757d;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .settings-container[b-23c532h9sp] {
        padding: 1rem;
    }

    .setting-item[b-23c532h9sp] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .setting-control[b-23c532h9sp] {
        margin-left: 0;
        width: 100%;
    }

    .form-select[b-23c532h9sp] {
        width: 100%;
    }
}

/* /Components/Pages/Teams/AcceptInvitation.razor.rz.scp.css */
.team-logo-wrapper-large[b-c0g3vx9qjw] {
    position: relative;
    width: 100px;
    height: 100px;
}

.team-logo-large[b-c0g3vx9qjw] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    z-index: 1;
}

.team-logo-placeholder-large[b-c0g3vx9qjw] {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--link-color) 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}
/* /Components/Pages/Teams/CreateTeam.razor.rz.scp.css */
.logo-preview[b-h6pm5ofuta] {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.trigram-input[b-h6pm5ofuta] {
    max-width: 150px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}
/* /Components/Pages/Teams/JoinTeam.razor.rz.scp.css */
.team-logo-wrapper-large[b-0xjk0at96c] {
    position: relative;
    width: 100px;
    height: 100px;
}

.team-logo-large[b-0xjk0at96c] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    z-index: 1;
}

.team-logo-placeholder-large[b-0xjk0at96c] {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--link-color) 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}
/* /Components/Pages/Teams/TeamDashboard.razor.rz.scp.css */
.team-logo-wrapper-large[b-9lahl3hkaf] {
    position: relative;
    width: 80px;
    height: 80px;
}

.team-logo-large[b-9lahl3hkaf] {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    z-index: 1;
}

.team-logo-placeholder-large[b-9lahl3hkaf] {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--link-color) 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.team-trigram[b-9lahl3hkaf] {
    color: var(--link-color);
    font-weight: 600;
    font-size: 0.7em;
}

/* Team header layout */
.team-header[b-9lahl3hkaf] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.team-header-info[b-9lahl3hkaf] {
    display: flex;
    align-items: center;
}

.team-title[b-9lahl3hkaf] {
    font-size: 1.5rem;
}

/* Responsive styles for mobile/PWA */
@media (max-width: 768px) {
    .team-header[b-9lahl3hkaf] {
        flex-direction: column;
        align-items: stretch;
    }

    .team-header-info[b-9lahl3hkaf] {
        margin-bottom: 0.75rem;
    }

    .team-logo-wrapper-large[b-9lahl3hkaf] {
        width: 60px;
        height: 60px;
    }

    .team-logo-large[b-9lahl3hkaf] {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

    .team-logo-placeholder-large[b-9lahl3hkaf] {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .team-title[b-9lahl3hkaf] {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .team-logo-wrapper-large[b-9lahl3hkaf] {
        width: 50px;
        height: 50px;
    }

    .team-logo-large[b-9lahl3hkaf] {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .team-logo-placeholder-large[b-9lahl3hkaf] {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        font-size: 0.875rem;
    }

    .team-title[b-9lahl3hkaf] {
        font-size: 1.1rem;
    }
}

.sortable-header[b-9lahl3hkaf] {
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.sortable-header:hover[b-9lahl3hkaf] {
    background-color: rgba(0, 0, 0, 0.05);
}

[b-9lahl3hkaf] .dark .sortable-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
/* /Components/Pages/Teams/TeamDetails.razor.rz.scp.css */
.team-logo-wrapper-large[b-49vjrqh1gr] {
    position: relative;
    width: 80px;
    height: 80px;
}

.team-logo-large[b-49vjrqh1gr] {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    z-index: 1;
}

.team-logo-placeholder-large[b-49vjrqh1gr] {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--link-color) 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.team-trigram[b-49vjrqh1gr] {
    color: var(--link-color);
    font-weight: 600;
    font-size: 0.7em;
}

/* Team header layout */
.team-header[b-49vjrqh1gr] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.team-header-info[b-49vjrqh1gr] {
    display: flex;
    align-items: center;
}

.team-title[b-49vjrqh1gr] {
    font-size: 1.5rem;
}

.team-header-actions[b-49vjrqh1gr] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

/* Responsive styles for mobile/PWA */
@media (max-width: 768px) {
    .team-header[b-49vjrqh1gr] {
        flex-direction: column;
        align-items: stretch;
    }

    .team-header-info[b-49vjrqh1gr] {
        margin-bottom: 0.75rem;
    }

    .team-logo-wrapper-large[b-49vjrqh1gr] {
        width: 60px;
        height: 60px;
    }

    .team-logo-large[b-49vjrqh1gr] {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }

    .team-logo-placeholder-large[b-49vjrqh1gr] {
        width: 60px;
        height: 60px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .team-title[b-49vjrqh1gr] {
        font-size: 1.25rem;
    }

    .team-header-actions[b-49vjrqh1gr] {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .team-logo-wrapper-large[b-49vjrqh1gr] {
        width: 50px;
        height: 50px;
    }

    .team-logo-large[b-49vjrqh1gr] {
        width: 50px;
        height: 50px;
        border-radius: 8px;
    }

    .team-logo-placeholder-large[b-49vjrqh1gr] {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        font-size: 0.875rem;
    }

    .team-title[b-49vjrqh1gr] {
        font-size: 1.1rem;
    }
}
/* /Components/Pages/Teams/Teams.razor.rz.scp.css */
.team-logo-wrapper[b-ax86igrpn9] {
    position: relative;
    width: 50px;
    height: 50px;
}

.team-logo[b-ax86igrpn9] {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    z-index: 1;
}

.team-logo-placeholder[b-ax86igrpn9] {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--link-color) 0%, #6366f1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.team-trigram[b-ax86igrpn9] {
    color: var(--link-color);
    font-weight: 600;
    font-size: 0.85em;
}

.card[b-ax86igrpn9] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover[b-ax86igrpn9] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-color);
}
/* /Components/Pages/Welcome.razor.rz.scp.css */
.welcome-container[b-2qdirbo0c6] {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.welcome-content[b-2qdirbo0c6] {
    max-width: 900px;
    text-align: center;
    color: #ffffff;
}

.logo-section[b-2qdirbo0c6] {
    margin-bottom: 3rem;
}

.welcome-title[b-2qdirbo0c6] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle[b-2qdirbo0c6] {
    font-size: 1.5rem;
    color: #a0a0a0;
}

.features-section[b-2qdirbo0c6] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature[b-2qdirbo0c6] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature:hover[b-2qdirbo0c6] {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.feature-icon[b-2qdirbo0c6] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature[b-2qdirbo0c6]  h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #e94560;
}

.feature[b-2qdirbo0c6]  p {
    font-size: 0.9rem;
    color: #a0a0a0;
}

.cta-section[b-2qdirbo0c6] {
    margin-bottom: 1.5rem;
}

.discord-section[b-2qdirbo0c6] {
    margin-bottom: 3rem;
}

.btn-login[b-2qdirbo0c6] {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #e94560, #ff6b6b);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-login:hover[b-2qdirbo0c6] {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    color: #ffffff;
}

.btn-discord[b-2qdirbo0c6] {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #5865F2;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-discord:hover[b-2qdirbo0c6] {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
    color: #ffffff;
}

.legends-showcase[b-2qdirbo0c6] {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

.legends-title[b-2qdirbo0c6] {
    font-size: 1rem;
    color: #e94560;
    margin-bottom: 0.5rem;
}

.legends-list[b-2qdirbo0c6] {
    font-size: 0.9rem;
    color: #a0a0a0;
    line-height: 1.6;
}

.legends-set[b-2qdirbo0c6] {
    font-size: 0.85rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 0.25rem;
    margin-top: 0;
}
