/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Ensure the html and body allow natural scrolling */
html[b-0242vryn6w], body[b-0242vryn6w] {
    margin: 0;
    padding: 0;
    overflow-x: auto; /* Allow horizontal scroll when needed */
    overflow-y: auto; /* Allow vertical scroll */
    height: auto; /* Let content determine height */
    min-height: 100vh; /* Minimum height for short content */
    width: 100%;
}

.app-layout[b-0242vryn6w] {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Minimum height to fill viewport */
    height: auto; /* Allow growth with content */
    overflow: visible; /* No overflow constraints */
    position: relative; /* For proper stacking context */
    transition: all 0.3s ease-in-out; /* Smooth transitions for resolution changes */
    width: 100%;
    min-width: 100%;
}

.app-bar[b-0242vryn6w] {
    position: sticky;
    top: 0;
    color: white;
    padding: 0.5rem 1rem;
    height: 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #253e74 0%, #11224a 100%);
    background-blend-mode: darken;
    z-index: 1040;
    overflow: visible;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
}

    .app-bar[b-0242vryn6w]::before,
    .app-bar[b-0242vryn6w]::after {
        content: "";
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        pointer-events: none;
        background-repeat: no-repeat;
        background-size: auto;
        transition: all 0.3s ease-in-out;
    }

    .app-bar[b-0242vryn6w]::before {
        left: 0;
        background-position: right top;
    }

    .app-bar[b-0242vryn6w]::after {
        right: 0;
        background-position: left bottom;
    }

.app-title[b-0242vryn6w] {
    color: ghostwhite;
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: font-size 0.3s ease-in-out;
}

.banner-content[b-0242vryn6w] {
    width: 100%;
    position: relative;
    z-index: 2;
    overflow: visible; /* Allow dropdowns */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}

.user-name[b-0242vryn6w] {
    color: ghostwhite !important;
}

.user-info-container[b-0242vryn6w] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    margin-left: auto;
    position: relative;
    z-index: 10;
    overflow: visible;
    transition: all 0.3s ease-in-out;
}

.user-right-section[b-0242vryn6w] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    position: relative;
    z-index: 10;
    overflow: visible;
    transition: all 0.3s ease-in-out;
}

.user-info-section[b-0242vryn6w] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.125rem;
    position: relative;
    z-index: 10;
    overflow: visible;
    transition: all 0.3s ease-in-out;
}

.menu-button[b-0242vryn6w] {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 0.2s ease-in-out;
}

    .menu-button:hover[b-0242vryn6w] {
        color: #392DFF;
    }

.app-body[b-0242vryn6w] {
    display: flex;
    flex: 1;
    min-height: 0;
    overflow: visible;
    background-color: transparent !important;
    position: static;
    transition: all 0.3s ease-in-out;
    width: 100%;
    min-width: 100%;
}

.drawer[b-0242vryn6w] {
    width: 250px;
    background-color: transparent; /* FIXED: Remove the white background */
    padding: 0; /* Remove default padding to let NavMenu handle it */
    transition: transform 0.3s ease-in-out, width 0.3s ease-in-out; /* Smooth drawer transitions */
    transform: translateX(0%);
    z-index: 100; /* Lower than header but higher than content */
    flex-shrink: 0; /* Prevent drawer from shrinking */
    overflow: visible; /* Allow content to flow naturally */
    display: flex;
    flex-direction: column;
}

    /* FIXED: Login state - remove duplicate background, let NavMenu handle it */
    .drawer.login-state[b-0242vryn6w] {
        width: 500px !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        transition: none !important;
    }

    /* UPDATED: Closed drawer should have minimum width for icon-only navigation */
    .drawer.closed[b-0242vryn6w] {
        width: 60px; /* CHANGED: Set minimum width for icon-only navigation */
        padding: 0;
        transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
        transform: translateX(0); /* CHANGED: Don't hide completely, just shrink */
    }

        /* ADDED: Collapsed navigation styles - moved from NavMenu.razor.css */
        .drawer.closed .nav-menu[b-0242vryn6w] {
            padding: 0.25rem 0 !important;
        }

        .drawer.closed .nav-text[b-0242vryn6w] {
            display: none !important;
            visibility: hidden !important;
        }

        .drawer.closed .nav-item[b-0242vryn6w] {
            margin-bottom: 0.25rem !important;
        }

        .drawer.closed .px-3[b-0242vryn6w] {
            padding-left: 0 !important;
            padding-right: 0 !important;
        }

        .drawer.closed .nav-link-flex[b-0242vryn6w] {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            padding: 0.75rem 0 !important;
            margin: 0.25rem 0 !important;
            gap: 0 !important;
            position: relative;
            width: 100% !important;
            box-sizing: border-box;
            transition: all 0.3s ease-in-out;
        }

            .drawer.closed .nav-link-flex > span[class*="bi"][b-0242vryn6w] {
                font-size: 1.5rem !important;
                margin: 0 !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                transition: font-size 0.3s ease-in-out;
            }

            .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
                display: none !important;
                visibility: hidden !important;
                width: 0 !important;
                height: 0 !important;
                overflow: hidden !important;
            }

            .drawer.closed .nav-link-flex:hover[b-0242vryn6w] {
                transform: none !important;
                background-color: rgba(255, 255, 255, 0.15) !important;
            }

.main-content[b-0242vryn6w] {
    flex: 1;
    position: static;
    transition: margin-left 0.3s ease-in-out;
    background: linear-gradient(to right, #E6EBEF 75%, #264957 100%);
    background-attachment: fixed;
    background-size: 100% 100%;
    width: auto;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    overflow: visible;
}

    /* NEW: Adjust main content when in login state */
    .main-content.login-shifted[b-0242vryn6w] {
        margin-left: 0 !important;
        transition: none !important;
    }

.page-content-wrapper[b-0242vryn6w] {
    padding: 1rem;
    min-height: calc(100vh - 140px);
    width: auto;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    overflow: visible;
    transition: all 0.3s ease-in-out;
}

.nav-body[b-0242vryn6w] {
    background-color: transparent; /* FIXED: Let NavMenu handle background */
}

.dark-mode .app-layout[b-0242vryn6w] {
    background-color: #121212;
}

.dark-mode .app-bar[b-0242vryn6w] {
    background-color: #333;
    color: #f1f1f1;
}

.dark-mode .drawer[b-0242vryn6w] {
    background-color: transparent; /* FIXED: Consistent transparent background */
    color: #eee;
}

.dark-mode .main-content[b-0242vryn6w] {
    background: linear-gradient(to right, #2a2a2a 75%, #121212 100%) !important;
    background-attachment: fixed;
    background-size: 100% 100%;
    color: #ddd;
}

.dark-mode .app-body[b-0242vryn6w] {
    background-color: #121212 !important;
}

/* Animation for smooth transitions */
@keyframes fadeInUp-b-0242vryn6w {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-loading-overlay[b-0242vryn6w] {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

@keyframes fadeInTooltip-b-0242vryn6w {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* --- RESPONSIVE FIXES - PROPERLY ORDERED --- */

/* Small Screens < 1024px */
@media (max-width: 1023px) {
    .drawer.login-state[b-0242vryn6w] {
        width: 0px !important;
    }
}

/* CRITICAL FIX: Medium screens 992px to 1199px - PROBLEMATIC RANGE */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .app-bar[b-0242vryn6w] {
        width: 100%;
        min-width: 100%;
        max-width: none;
        position: sticky;
        box-sizing: border-box;
    }

    .app-layout[b-0242vryn6w] {
        width: 100%;
        min-width: 100%;
        overflow: visible; /* CRITICAL: Allow expansion */
    }

    .main-content[b-0242vryn6w] {
        width: auto;
        min-width: 0;
        max-width: none; /* CRITICAL: Remove max-width constraint */
        flex: 1;
        margin-left: 0;
        background: linear-gradient(to right, #E6EBEF 75%, #264957 100%);
        background-attachment: fixed;
    }

    .page-content-wrapper[b-0242vryn6w] {
        padding: 0.9rem;
        width: auto;
        min-width: 0;
        max-width: none; /* CRITICAL: Remove max-width constraint */
        box-sizing: border-box;
        overflow: visible;
    }

    .banner-content[b-0242vryn6w] {
        width: 100%;
        min-width: 100%;
        max-width: none; /* CRITICAL: Remove max-width constraint */
        position: relative;
        z-index: 2;
        overflow: visible;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease-in-out;
        box-sizing: border-box;
    }

    .drawer[b-0242vryn6w] {
        width: 220px;
        position: relative;
        height: auto;
        top: auto;
        left: auto;
        transform: translateX(0);
        background-color: transparent;
    }

        .drawer.closed[b-0242vryn6w] {
            width: 55px;
            transform: translateX(0);
        }

        .drawer.login-state[b-0242vryn6w] {
            width: 450px;
        }

    .app-title[b-0242vryn6w] {
        font-size: 1.4rem;
    }

    /* CRITICAL: Override Bootstrap constraints */
    .container-fluid[b-0242vryn6w] {
        max-width: none !important;
        width: auto !important;
        min-width: 0 !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .row[b-0242vryn6w] {
        margin-left: -15px;
        margin-right: -15px;
        width: auto !important;
        max-width: none !important;
        flex-wrap: wrap;
    }

    .col[b-0242vryn6w],
    .col-12[b-0242vryn6w],
    .col-6[b-0242vryn6w],
    .col-3[b-0242vryn6w],
    .col-md-3[b-0242vryn6w],
    .col-xl-3[b-0242vryn6w] {
        max-width: none !important;
        flex: 1 1 auto;
    }

    /* Tooltip and collapsed nav styles */
    .drawer.closed .nav-link-flex:hover[b-0242vryn6w]::after {
        content: attr(title);
        position: absolute;
        left: calc(100% + 10px);
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 0.375rem;
        white-space: nowrap;
        z-index: 1000;
        font-size: 0.875rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        opacity: 0;
        animation: fadeInTooltip-b-0242vryn6w 0.3s ease-in-out 0.5s forwards;
        pointer-events: none;
    }

    .drawer.closed .nav-link-flex:hover[b-0242vryn6w]::before {
        content: '';
        position: absolute;
        left: calc(100% + 4px);
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: 6px solid rgba(0, 0, 0, 0.9);
        z-index: 1001;
        opacity: 0;
        animation: fadeInTooltip-b-0242vryn6w 0.3s ease-in-out 0.5s forwards;
        pointer-events: none;
    }

    .drawer.closed .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
    }

    .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Large screens >= 1200px (This already works properly) */
@media (min-width: 1200px) {
    .app-layout[b-0242vryn6w] {
        transition: all 0.3s ease-in-out;
    }

    .drawer[b-0242vryn6w] {
        width: 250px;
        position: relative;
        height: auto;
        top: auto;
        left: auto;
        transform: translateX(0);
        background-color: transparent;
    }

        .drawer.closed[b-0242vryn6w] {
            width: 60px;
            transform: translateX(0);
        }

        .drawer.login-state[b-0242vryn6w] {
            width: 500px;
        }

    .main-content[b-0242vryn6w] {
        margin-left: 0;
        background: linear-gradient(to right, #E6EBEF 75%, #264957 100%);
        background-attachment: fixed;
    }

    .drawer.closed .nav-link-flex:hover[b-0242vryn6w]::after {
        content: attr(title);
        position: absolute;
        left: calc(100% + 10px);
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 0.5rem 0.75rem;
        border-radius: 0.375rem;
        white-space: nowrap;
        z-index: 1000;
        font-size: 0.875rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        opacity: 0;
        animation: fadeInTooltip-b-0242vryn6w 0.3s ease-in-out 0.5s forwards;
        pointer-events: none;
    }

    .drawer.closed .nav-link-flex:hover[b-0242vryn6w]::before {
        content: '';
        position: absolute;
        left: calc(100% + 4px);
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: 6px solid rgba(0, 0, 0, 0.9);
        z-index: 1001;
        opacity: 0;
        animation: fadeInTooltip-b-0242vryn6w 0.3s ease-in-out 0.5s forwards;
        pointer-events: none;
    }

    .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    .container-fluid[b-0242vryn6w] {
        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;
        flex: 1;
    }

    .row[b-0242vryn6w] {
        margin-left: -15px;
        margin-right: -15px;
        width: auto !important;
        max-width: none !important;
        flex-wrap: wrap;
    }

    .col[b-0242vryn6w],
    .col-12[b-0242vryn6w],
    .col-6[b-0242vryn6w],
    .col-3[b-0242vryn6w],
    .col-md-3[b-0242vryn6w],
    .col-xl-3[b-0242vryn6w] {
        max-width: none !important;
        flex: 1 1 auto;
    }
}

/* --- Desktop view (>= 992px) - General Desktop Rules --- */
@media (min-width: 992px) {
    .drawer[b-0242vryn6w] {
        position: relative;
        height: auto;
        top: auto;
        left: auto;
        transform: translateX(0);
        background-color: transparent;
        transition: all 0.3s ease-in-out;
    }

        .drawer.closed[b-0242vryn6w] {
            width: 60px;
            transform: translateX(0);
        }

    .main-content:not(.shifted):not(.login-shifted)[b-0242vryn6w] {
        margin-left: 0;
    }

    .drawer.closed .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
    }

    .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* --- Mobile view (< 992px) --- */
@media (max-width: 991.98px) {
    .app-layout[b-0242vryn6w] {
        overflow-x: hidden;
        width: 100%;
        transition: all 0.3s ease-in-out;
    }

    .app-body[b-0242vryn6w] {
        overflow-x: hidden;
        width: 100%;
        background-color: transparent !important;
        transition: all 0.3s ease-in-out;
    }

    .drawer[b-0242vryn6w] {
        transform: translateX(-100%);
        position: fixed;
        height: calc(100vh - 100px);
        top: 100px;
        left: 0;
        z-index: 999;
        background-color: transparent;
        transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
    }

        .drawer.closed[b-0242vryn6w] {
            width: 0;
            transform: translateX(-100%);
        }

            .drawer.closed .nav-link-flex:hover[b-0242vryn6w]::after,
            .drawer.closed .nav-link-flex:hover[b-0242vryn6w]::before {
                display: none !important;
            }

        .drawer.open[b-0242vryn6w] {
            transform: translateX(0);
            transition: transform 0.3s ease-in-out;
        }

        .drawer.login-state[b-0242vryn6w] {
            width: 100vw;
            transform: translateX(0);
            position: fixed;
            background-color: transparent;
            transition: all 0.3s ease-in-out;
        }

    .main-content[b-0242vryn6w] {
        margin-left: 0;
        background: linear-gradient(to right, #E6EBEF 85%, #264957 100%);
        background-attachment: scroll;
        background-size: 100% 100%;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        transition: all 0.3s ease-in-out;
    }

        .main-content.login-shifted[b-0242vryn6w] {
            margin-left: 0;
        }

    .page-content-wrapper[b-0242vryn6w] {
        padding: 0.75rem;
        min-height: calc(100vh - 120px);
    }

    .user-info-container[b-0242vryn6w],
    .user-right-section[b-0242vryn6w],
    .user-info-section[b-0242vryn6w] {
        align-items: flex-end;
        z-index: 15;
        overflow: visible;
        transition: all 0.3s ease-in-out;
    }

    .user-initials-circle[b-0242vryn6w] {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
        transition: all 0.3s ease-in-out;
    }

    .dark-mode .main-content[b-0242vryn6w] {
        background: linear-gradient(to right, #2a2a2a 85%, #121212 100%) !important;
        background-attachment: scroll;
        background-size: 100% 100%;
    }

    .drawer.closed .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
    }

    .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Small screens below 768px */
@media (max-width: 767.98px) {
    .app-bar[b-0242vryn6w] {
        height: 90px;
        padding: 0.4rem 0.8rem;
    }

    .app-title[b-0242vryn6w] {
        font-size: 1.3rem;
    }

    .menu-button[b-0242vryn6w] {
        font-size: 1.8rem;
        margin-right: 0.8rem;
    }

    .page-content-wrapper[b-0242vryn6w] {
        padding: 0.6rem;
        min-height: calc(100vh - 110px);
    }

    .drawer[b-0242vryn6w] {
        top: 90px;
        height: calc(100vh - 90px);
        background-color: transparent;
    }

        .drawer.login-state[b-0242vryn6w] {
            width: 100vw;
            max-width: none;
            background-color: transparent;
        }

        .drawer.closed .nav-text[b-0242vryn6w] {
            display: none !important;
            visibility: hidden !important;
        }

        .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
            display: none !important;
            visibility: hidden !important;
            width: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
        }
}

/* Small screens below 500px */
@media (max-width: 499.98px) {
    .app-bar[b-0242vryn6w]::before,
    .app-bar[b-0242vryn6w]::after {
        display: none;
    }

    .app-bar[b-0242vryn6w] {
        height: auto;
        min-height: 90px;
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.3s ease-in-out;
    }

    .banner-content[b-0242vryn6w] {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        position: relative;
        transition: all 0.3s ease-in-out;
    }

    .menu-button[b-0242vryn6w] {
        font-size: 1.5rem;
        margin: 0;
        position: absolute;
        left: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .user-info-container[b-0242vryn6w] {
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
        transform: translateX(calc(10vw - 1rem));
        transition: all 0.3s ease-in-out;
    }

    .page-content-wrapper[b-0242vryn6w] {
        padding: 0.5rem;
        min-height: calc(100vh - 110px);
    }

    .drawer[b-0242vryn6w] {
        top: 90px;
        height: calc(100vh - 90px);
        background-color: transparent;
    }

        .drawer.login-state[b-0242vryn6w] {
            width: 100vw;
            max-width: none;
            background-color: transparent;
        }

    .main-content[b-0242vryn6w] {
        background: linear-gradient(to right, #E6EBEF 95%, #264957 100%);
        background-size: 100% 100%;
    }

    .dark-mode .main-content[b-0242vryn6w] {
        background: linear-gradient(to right, #2a2a2a 95%, #121212 100%) !important;
        background-size: 100% 100%;
    }

    .drawer.closed .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
    }

    .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Very small screens */
@media (max-width: 374.98px) {
    .app-bar[b-0242vryn6w] {
        min-height: 80px;
        padding: 0.4rem;
        gap: 0.3rem;
    }

    .app-title[b-0242vryn6w] {
        font-size: 1.1rem;
    }

    .page-content-wrapper[b-0242vryn6w] {
        padding: 0.4rem;
        min-height: calc(100vh - 100px);
    }

    .drawer[b-0242vryn6w] {
        top: 80px;
        height: calc(100vh - 80px);
        background-color: transparent;
    }

        .drawer.closed .nav-text[b-0242vryn6w] {
            display: none !important;
            visibility: hidden !important;
        }

        .drawer.closed .nav-link-flex .nav-text[b-0242vryn6w] {
            display: none !important;
            visibility: hidden !important;
            width: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
        }
}

/* CRITICAL: Ensure smooth transitions for resolution changes */
@media (prefers-reduced-motion: no-preference) {
    .app-layout[b-0242vryn6w],
    .app-bar[b-0242vryn6w],
    .app-body[b-0242vryn6w],
    .drawer[b-0242vryn6w],
    .main-content[b-0242vryn6w],
    .page-content-wrapper[b-0242vryn6w],
    .banner-content[b-0242vryn6w],
    .user-info-container[b-0242vryn6w],
    .user-right-section[b-0242vryn6w],
    .user-info-section[b-0242vryn6w] {
        transition: all 0.3s ease-in-out;
    }
}

/* CRITICAL: Ensure no individual components create scroll containers */
.table-responsive[b-0242vryn6w],
.card-body[b-0242vryn6w],
.modal-body[b-0242vryn6w],
.container-fluid[b-0242vryn6w],
.container[b-0242vryn6w] {
    overflow: visible !important; /* Override Bootstrap's overflow settings */
}

.container-fluid[b-0242vryn6w],
.container[b-0242vryn6w],
.row[b-0242vryn6w] {
    max-width: none !important;
    overflow: visible !important;
}

/* Exception: Only allow overflow for specific utility cases */
.force-scroll[b-0242vryn6w] {
    overflow: auto !important;
}

/* Ensure dropdowns and modals appear above everything */
.dropdown-menu[b-0242vryn6w] {
    z-index: 1050 !important;
}

.modal[b-0242vryn6w] {
    z-index: 1055 !important;
}

.modal-backdrop[b-0242vryn6w] {
    z-index: 1040 !important;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Remove scrollable container and make nav wider during login */
.nav-container[b-ef3h1madxq] {
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: 100%;
}

/* FIXED: Add background for authenticated nav container to prevent white space */
.nav-container.authenticated[b-ef3h1madxq] {
    background-color: rgba(15, 33, 40, 0.95); /* Same background as nav-menu */
    height: 100%; /* Fill available drawer space */
    transition: all 0.3s ease-in-out;
}

/* Icon-only navigation styles for collapsed state */
.nav-container.icon-only .nav-menu[b-ef3h1madxq] {
    padding: 0.25rem 0;
}

.nav-container.icon-only .nav-text[b-ef3h1madxq] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.nav-container.icon-only .nav-item[b-ef3h1madxq] {
    margin-bottom: 0.25rem;
}

.nav-container.icon-only .px-3[b-ef3h1madxq] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.nav-container.icon-only .nav-link-flex[b-ef3h1madxq] {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0.75rem 0 !important;
    margin: 0.25rem 0 !important;
    gap: 0 !important;
    position: relative;
    width: 100% !important;
    box-sizing: border-box;
}

.nav-container.icon-only .nav-link-flex > span[class*="bi"][b-ef3h1madxq] {
    font-size: 1.5rem !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Pegasus Branding Styles - Fully centered in the available space */
.pegasus-nav-branding[b-ef3h1madxq] {
    flex: 1; /* Take up all available space */
    padding: 2rem;
    background: linear-gradient(135deg, #1B1B24 0%, #2D4A8C 50%, #1B1B24 100%); /* RESTORED: Add background back */
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    position: relative;
    width: 100%;
    margin: 0; /* ADDED: Remove any margins */
    padding-top: 4rem;
}

.pegasus-nav-logo-container[b-ef3h1madxq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    height: 100%;
    text-align: center;
    transform: translateY(-12rem);
}

.pegasus-nav-logo[b-ef3h1madxq] {
    display: flex;
    justify-content: center;
    align-items: center;
/*    animation: gentle-pulse 3s ease-in-out infinite;*/
}

    .pegasus-nav-logo img[b-ef3h1madxq] {
        height: 32rem !important;
        width: auto;
        max-width: 80%;
        object-fit: contain;
    }

.pegasus-nav-text[b-ef3h1madxq] {
    width: 100%;
    text-align: center;
}

.pegasus-nav-title[b-ef3h1madxq] {
    font-size: 2.5rem !important; /* Much bigger text */
    font-weight: bold;
    color: #fff !important;
    line-height: 1.2;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    word-wrap: break-word;
}

.pegasus-nav-subtitle[b-ef3h1madxq] {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

@keyframes gentle-pulse-b-ef3h1madxq {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.85;
    }
}

/* Navigation menu styles - only show when authenticated */
.nav-menu[b-ef3h1madxq] {
    padding: 1rem;
    overflow: visible;
    background-color: transparent; /* FIXED: Remove duplicate background since container now has it */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1; /* ADDED: Allow menu to expand and fill remaining space */
}

/* Hide navigation menu during login (not authenticated) */
.nav-container.login-state .nav-menu[b-ef3h1madxq] {
    display: none;
}

.nav-container.login-state[b-ef3h1madxq] {
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: 500px;
    min-width: 500px;
    max-width: 500px;
    transition: none !important;
}

/* Medium screens (tablets) */
@media (max-width: 1023px) {

    .nav-container.login-state[b-ef3h1madxq],
    .drawer.login-state[b-ef3h1madxq] {
        display: none !important;
    }

    .pegasus-nav-branding[b-ef3h1madxq] {
        padding: 1.5rem;
        padding-top: 3rem;
        display: none !important;
    }

    .pegasus-nav-logo-container[b-ef3h1madxq] {
        transform: translateY(-1.5rem); /* ADDED: Adjusted transform for medium screens */
    }

    .pegasus-nav-logo img[b-ef3h1madxq] {
        height: 6.5rem !important; /* Increased from 5rem to 6.5rem */
    }

    .pegasus-nav-title[b-ef3h1madxq] {
        font-size: 2.2rem !important;
        letter-spacing: 1.5px;
    }

    .pegasus-nav-subtitle[b-ef3h1madxq] {
        font-size: 1.1rem;
    }

    .pegasus-nav-logo-container[b-ef3h1madxq] {
        gap: 1.5rem;
        transform: translateY(-1.5rem);
    }
}

/* Small tablets */
@media (max-width: 991.98px) {
    .nav-container.login-state[b-ef3h1madxq] {
        display: none !important;
    }

    .pegasus-nav-branding[b-ef3h1madxq] {
        padding: 1.25rem;
        padding-top: 2.5rem; /* ADDED: Adjusted top padding for small tablets */
        display: none !important;
    }

    .pegasus-nav-logo-container[b-ef3h1madxq] {
        transform: translateY(-1rem); /* ADDED: Adjusted transform for small tablets */
    }

    .pegasus-nav-logo img[b-ef3h1madxq] {
        height: 5.5rem !important; /* Increased from 4rem to 5.5rem */
    }

    .pegasus-nav-title[b-ef3h1madxq] {
        font-size: 1.8rem !important;
        letter-spacing: 1px;
    }

    .pegasus-nav-subtitle[b-ef3h1madxq] {
        font-size: 1rem;
    }

    .pegasus-nav-logo-container[b-ef3h1madxq] {
        gap: 1.25rem;
        transform: translateY(-1rem); /* Adjusted for small tablets */
    }
}

@media (max-width: 991px) {
    .nav-container.login-state[b-ef3h1madxq] {
        display: none !important;
    }

    .pegasus-nav-branding[b-ef3h1madxq] {
        display: none !important;
    }

    .drawer.closed[b-ef3h1madxq] {
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

        .drawer.closed .nav-menu[b-ef3h1madxq],
        .drawer.closed .nav-item[b-ef3h1madxq],
        .drawer.closed .nav-link-flex[b-ef3h1madxq],
        .drawer.closed .nav-link-flex > span[class*="bi"][b-ef3h1madxq],
        .drawer.closed .nav-text[b-ef3h1madxq] {
            display: none !important;
            visibility: hidden !important;
            width: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
            padding: 0 !important;
            margin: 0 !important;
        }
}

/* Mobile phones */
@media (max-width: 500px) {
    .nav-container.login-state[b-ef3h1madxq] {
        display: none !important;
    }

    .pegasus-nav-branding[b-ef3h1madxq] {
        padding: 1rem;
        padding-top: 2rem; /* ADDED: Adjusted top padding for mobile */
        display: none !important;
    }

    .pegasus-nav-logo-container[b-ef3h1madxq] {
        gap: 1rem;
        transform: translateY(-0.5rem); /* ADDED: Adjusted transform for mobile */
    }

    .pegasus-nav-logo img[b-ef3h1madxq] {
        height: 4rem !important; /* Increased from 3rem to 4rem */
    }

    .pegasus-nav-title[b-ef3h1madxq] {
        font-size: 1.4rem !important;
        letter-spacing: 0.5px;
    }

    .pegasus-nav-subtitle[b-ef3h1madxq] {
        font-size: 0.9rem;
    }
}

/* Very small screens */
@media (max-width: 375px) {
    .nav-container.login-state[b-ef3h1madxq] {
        display: none !important;
    }

    .pegasus-nav-branding[b-ef3h1madxq] {
        padding: 0.75rem;
        padding-top: 1.5rem; /* ADDED: Adjusted top padding for very small screens */
        display: none !important;
    }

    .pegasus-nav-logo-container[b-ef3h1madxq] {
        transform: translateY(-0.25rem); /* ADDED: Minimal transform for very small screens */
    }

    .pegasus-nav-logo img[b-ef3h1madxq] {
        height: 3.5rem !important; /* Increased from 2.5rem to 3.5rem */
    }

    .pegasus-nav-title[b-ef3h1madxq] {
        font-size: 1.2rem !important;
    }

    .pegasus-nav-subtitle[b-ef3h1madxq] {
        font-size: 0.8rem;
    }
}

/* Remove scrollable behavior completely */
[b-ef3h1madxq] .drawer {
    padding-top: 0 !important;
    overflow: visible !important;
}

/* Navigation link styles for authenticated users */
[b-ef3h1madxq] .nav-item {
    margin-bottom: 0.5rem;
}

/* ADDED: Proper flexbox alignment for navigation links */
[b-ef3h1madxq] .nav-link-flex {
    display: flex !important;
    align-items: flex-start !important; /* Align icon to top */
    gap: 0.5rem !important; /* Space between icon and text */
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

/* ADDED: Icon stays at top and doesn't shrink */
[b-ef3h1madxq] .nav-link-flex > span[class*="bi"] {
    flex-shrink: 0 !important; /* Icon won't shrink */
    line-height: 1 !important; /* Consistent icon line height */
    margin-top: 0.1rem !important; /* Slight adjustment for better alignment */
}

/* ADDED: Text can wrap and takes remaining space */
[b-ef3h1madxq] .nav-link-flex .nav-text {
    flex: 1 !important; /* Text takes remaining space */
    line-height: 1.3 !important; /* Better line spacing for wrapped text */
    word-wrap: break-word !important; /* Allow long words to break */
    hyphens: auto !important; /* Auto hyphenation */
}

[b-ef3h1madxq] .nav-link {
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    color: rgba(255, 255, 255, 0.8);
}

    [b-ef3h1madxq] .nav-link:hover,
    [b-ef3h1madxq] .nav-link-flex:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
        color: #fff;
    }

    [b-ef3h1madxq] .nav-link.active,
    [b-ef3h1madxq] .nav-link-flex.active {
        background-color: rgba(45, 74, 140, 0.3);
        color: #fff;
    }

/* Responsive Media Queries for Icon-Only Navigation */

/* Desktop - Large screens (≥1200px) */
@media (min-width: 1200px) {
    /* Keep existing desktop styles - both icon and text */
    .nav-container.icon-only .nav-link-flex > span[class*="bi"][b-ef3h1madxq] {
        font-size: 1.5rem !important;
    }
}

/* Medium Desktop/Tablets (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .nav-container.icon-only .nav-link-flex > span[class*="bi"][b-ef3h1madxq] {
        font-size: 1.4rem !important; /* Slightly smaller on medium screens */
    }

    .nav-container.icon-only .nav-link-flex[b-ef3h1madxq] {
        padding: 0.6rem 0 !important;
        margin: 0.2rem 0 !important;
    }
}

/* Small Tablets (768px - 991px) - Force icon-only only when drawer is OPEN */
@media (max-width: 991.98px) {
    /* Only apply icon-only styles when drawer is open (not closed) */
/*    .nav-container.authenticated:not(.drawer-closed) .nav-text {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }*/

    .nav-container.authenticated .nav-link-flex[b-ef3h1madxq] {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0.75rem 0 !important;
        margin: 0.25rem 0 !important;
        gap: 0 !important;
    }

        .nav-container.authenticated .nav-link-flex > span[class*="bi"][b-ef3h1madxq] {
            font-size: 1.3rem !important;
            margin: 0 !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
        }

    .nav-container.authenticated .px-3[b-ef3h1madxq] {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
}

/* Mobile Phones (≤767px) */
@media (max-width: 767.98px) {
    .nav-container.authenticated .nav-link-flex > span[class*="bi"][b-ef3h1madxq] {
        font-size: 1.2rem !important;
    }

    .nav-container.authenticated .nav-link-flex[b-ef3h1madxq] {
        padding: 0.6rem 0 !important;
        margin: 0.2rem 0 !important;
    }
}

/* Very Small Screens (≤499px) */
@media (max-width: 499.98px) {
    .nav-container.authenticated .nav-link-flex > span[class*="bi"][b-ef3h1madxq] {
        font-size: 1.1rem !important;
    }

    .nav-container.authenticated .nav-link-flex[b-ef3h1madxq] {
        padding: 0.5rem 0 !important;
        margin: 0.15rem 0 !important;
    }
}

/* Extra Small Screens (≤374px) */
@media (max-width: 374.98px) {
    .nav-container.authenticated .nav-link-flex > span[class*="bi"][b-ef3h1madxq] {
        font-size: 1rem !important;
    }

    .nav-container.authenticated .nav-menu[b-ef3h1madxq] {
        padding: 0.15rem 0;
    }
}

/* Disable layout animations during login */
body.login-state *[b-ef3h1madxq],
body.login-state[b-ef3h1madxq] {
    transition: none !important;
}

body.login-state[b-ef3h1madxq]  .nav-link-flex:hover {
    transform: none !important;
}
/* /Components/Pages/BulkCommissionCalculation.razor.rz.scp.css */
.popup-menu[b-z8lijn8exe] {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1050 !important; /* Higher z-index to ensure it's above other elements */
    max-width: 200px;
    min-width: 150px;
    background-color: white !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    padding: 0.5rem !important;
    margin-top: 0.25rem !important;
}

.dropdown-container[b-z8lijn8exe] {
    position: relative !important;
    display: inline-block !important;
}

.dropdown-toggle[b-z8lijn8exe] {
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 32px;
    min-height: 32px;
    line-height: 1 !important;
}

    .dropdown-toggle i[b-z8lijn8exe] {
        margin: 0 !important;
        padding: 0 !important;
        font-size: 14px;
        line-height: 1 !important;
    }

/* Ensure table cells don't clip the dropdown */
.table td[b-z8lijn8exe] {
    position: static !important;
    overflow: visible !important;
}

/* Ensure table-responsive doesn't clip dropdown */
.table-responsive[b-z8lijn8exe] {
    overflow: visible !important;
}

/* Ensure card body doesn't clip dropdown */
.card-body[b-z8lijn8exe] {
    overflow: visible !important;
}

/* Fix for bottom rows */
.popup-menu.bottom-row[b-z8lijn8exe] {
    top: auto !important;
    bottom: 100% !important;
    margin-bottom: 0.25rem !important;
    margin-top: 0 !important;
}
/* /Components/Pages/Dashboard/Dashboard.razor.rz.scp.css */
/* ========================================
   DASHBOARD COMPONENT STYLES
   ======================================== */

/* === BASE CHART STYLES === */
.chart-container[b-crdmexxv96] {
    margin: 60px 40px 60px 80px;
    position: relative;
}

.chart-y-axis-labels[b-crdmexxv96] {
    position: absolute;
    left: -70px;
    top: 0;
    height: 300px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
}

.chart-y-axis-label[b-crdmexxv96] {
    font-size: 0.75rem;
    line-height: 1;
}

.chart-y-axis-title[b-crdmexxv96] {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: center;
    width: 200px;
    text-align: center;
}

.chart-area[b-crdmexxv96] {
    height: 300px;
    border-left: 2px solid #dee2e6;
    border-bottom: 2px solid #dee2e6;
    position: relative;
    display: flex;
    align-items: end;
    justify-content: space-around;
    padding: 10px 5px;
}

.chart-bar-container[b-crdmexxv96] {
    flex: 1;
    max-width: 80px;
    margin: 0 2px;
}

.chart-bar[b-crdmexxv96] {
    height: 280px;
    position: relative;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column-reverse;
}

.chart-segment[b-crdmexxv96] {
    opacity: 0.8;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-bars[b-crdmexxv96] {
    position: relative;
}

.chart-column[b-crdmexxv96] {
    position: relative;
}

.chart-bar-stack[b-crdmexxv96] {
    position: relative;
}

.chart-total-label[b-crdmexxv96] {
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.chart-month-label[b-crdmexxv96] {
    transform: rotate(0deg);
    white-space: nowrap;
    color: #666;
}

.chart-month-group[b-crdmexxv96] {
    transition: all 0.2s ease;
}

.chart-month-group:hover[b-crdmexxv96] {
    transform: translateY(-2px);
}

.chart-y-axis[b-crdmexxv96] {
    color: #666;
}

.chart-x-axis-labels[b-crdmexxv96] {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
    padding: 0 5px;
}

.chart-x-axis-label[b-crdmexxv96] {
    flex: 1;
    max-width: 80px;
    margin: 0 2px;
    font-size: 0.7rem;
    writing-mode: horizontal-tb;
    transform: rotate(-45deg);
    display: inline-block;
    white-space: nowrap;
}

.chart-grid-line[b-crdmexxv96] {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.chart-stacked-bar[b-crdmexxv96] {
    margin: 0 1px;
}

.chart-responsive[b-crdmexxv96] {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.chart-no-data[b-crdmexxv96] {
    font-size: 0.7rem;
}

.chart-bar-label[b-crdmexxv96] {
    margin-top: 0.25rem;
    font-size: 0.65rem;
}

.selected-month[b-crdmexxv96] {
    border: 2px solid #0d6efd !important;
}

.clickable-bar[b-crdmexxv96] {
    transition: all 0.15s ease;
}

.clickable-bar:hover[b-crdmexxv96] {
    opacity: 0.8;
    transform: scale(1.02);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* === CHART SCROLLBAR STYLES === */
.chart-responsive[b-crdmexxv96]::-webkit-scrollbar {
    height: 8px;
}

.chart-responsive[b-crdmexxv96]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.chart-responsive[b-crdmexxv96]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.chart-responsive[b-crdmexxv96]::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.chart-scroll-indicator[b-crdmexxv96] {
    display: none;
    text-align: center;
    margin-top: 10px;
    color: #6c757d;
    font-size: 0.8em;
}

/* === LEGEND STYLES === */
/*.legend-item {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
    width: 20px;
}*/

.legend-color[b-crdmexxv96] {
    width: 12px;
    height: 12px;
    margin-right: 5px;
    border-radius: 2px;
}

/* === BOOTSTRAP COLOR OVERRIDES === */
.bg-primary[b-crdmexxv96] {
    background-color: #0d6efd !important;
}

.bg-success[b-crdmexxv96] {
    background-color: #198754 !important;
}

.bg-info[b-crdmexxv96] {
    background-color: #0dcaf0 !important;
}

.bg-warning[b-crdmexxv96] {
    background-color: #ffc107 !important;
}

.bg-danger[b-crdmexxv96] {
    background-color: #dc3545 !important;
}

.bg-secondary[b-crdmexxv96] {
    background-color: #6c757d !important;
}

.bg-dark[b-crdmexxv96] {
    background-color: #212529 !important;
}

/* === FILTER SYSTEM STYLES === */

/* Filter cards */
.filter-commission[b-crdmexxv96],
.filter-commission-card[b-crdmexxv96] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.filter-commission-card[b-crdmexxv96] {
    height: 300px;
}

.filter-account-card[b-crdmexxv96] {
    height: 400px;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.filter-transaction-status-card[b-crdmexxv96] {
    min-height: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    transition: all 0.3s ease;
}

.filter-transaction-status-card.collapsed .card-body[b-crdmexxv96] {
    max-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-commission-card .card-header[b-crdmexxv96],
.filter-account-card .card-header[b-crdmexxv96] {
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0;
    color: white;
}

.filter-commission-card .card-body[b-crdmexxv96],
.filter-account-card .card-body[b-crdmexxv96] {
    padding: 1rem;
    overflow-y: auto;
    height: calc(100% - 60px);
}

.filter-account-card .card-body[b-crdmexxv96] {
    max-height: 350px;
}

/* Mobile filter cards */
.mobile-filter-card[b-crdmexxv96] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

.mobile-filter-card .card-header[b-crdmexxv96] {
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.mobile-filter-card .card-body[b-crdmexxv96] {
    padding: 0.75rem;
}

.filter-scroll-container[b-crdmexxv96] {
    overflow-y: auto;
    max-height: 200px;
}

/* Form labels in filters */
.filter-commission label[b-crdmexxv96],
.filter-commission-card label[b-crdmexxv96],
.form-check-label[b-crdmexxv96] {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: break-word !important;
    max-width: 100% !important;
    display: block !important;
}

.card-header:has(.bi-funnel)[b-crdmexxv96] {
    white-space: normal !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

/* === OFFCANVAS STYLES === */
.offcanvas.offcanvas-start[b-crdmexxv96] {
    width: 320px;
}

.offcanvas-body[b-crdmexxv96] {
    padding: 1rem;
}

/* === PERFORMANCE AND USER INTERFACE === */
.performance-chart-item[b-crdmexxv96] {
    font-size: 0.7rem;
}

.empty-state-icon[b-crdmexxv96] {
    font-size: 3rem;
}

.summary-card-icon[b-crdmexxv96] {
    font-size: 2rem;
    opacity: 0.8;
}

.user-actions[b-crdmexxv96] {
    margin-top: 1rem;
}

.performance-progress[b-crdmexxv96] {
    height: 4px;
    margin-top: 2px;
}

.user-header-responsive[b-crdmexxv96] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.user-header-responsive .user-period-controls[b-crdmexxv96] {
    margin-left: auto;
    margin-top: 0;
}

.filter-transaction-status-card .card-body[b-crdmexxv96] {
    padding: 0.5rem !important;
    max-height: 1000px; /* Large enough to accommodate content */
    overflow: hidden;
    transition: all 0.3s ease;
}

.filter-transaction-status-card .card-header[b-crdmexxv96] {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.filter-transaction-status-card .card-header:hover[b-crdmexxv96] {
    background-color: #0366a3 !important;
}

.filter-transaction-status-card .collapse-icon[b-crdmexxv96] {
    transition: transform 0.3s ease;
    float: right;
    margin-left: 0.5rem;
}

.filter-transaction-status-card.collapsed .collapse-icon[b-crdmexxv96] {
    transform: rotate(-90deg);
}

.filter-transaction-status-card .row[b-crdmexxv96] {
    margin: 0 !important;
}

.filter-transaction-status-card .col-md-12[b-crdmexxv96] {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-bottom: 0.25rem !important;
}

.filter-transaction-status-card h6[b-crdmexxv96] {
    margin-bottom: 0.25rem !important;
}

.filter-transaction-status-card .form-check-inline[b-crdmexxv96] {
    margin-right: 1rem !important;
    margin-bottom: 0.25rem !important;
}

.filter-account-card.empty[b-crdmexxv96] {
    height: auto !important;
    min-height: 120px;
}

.filter-account-card.with-data[b-crdmexxv96] {
    height: 1250px !important;
}

/* ========================================
   RESPONSIVE FILTER SYSTEM - CLEAN & SIMPLE
   ======================================== */

/* === DESKTOP (1025px and above): Show left filter panel === */
@media (min-width: 1025px) {
    /* Force show desktop filter panel */
    .filter-desktop-panel.d-md-block[b-crdmexxv96] {
        display: block !important;
    }
    
    /* Hide mobile filter button */
    .filter-mobile-toggle.d-md-none[b-crdmexxv96] {
        display: none !important;
    }
    
    /* Hide mobile offcanvas */
    .offcanvas.d-md-none[b-crdmexxv96] {
        display: none !important;
    }
    
    /* Desktop layout: 25% filter + 75% content */
    .dashboard-content-area.col-md-9[b-crdmexxv96] {
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
    
    .user-header-responsive[b-crdmexxv96] {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
    }
    
    .user-header-responsive .user-period-controls[b-crdmexxv96] {
        margin-left: auto;
        margin-top: 0;
    }
    
    /* Desktop chart behavior */
    .chart-responsive[b-crdmexxv96] {
        overflow-x: visible;
    }
    
    .chart-scroll-indicator[b-crdmexxv96] {
        display: none;
    }
    
    .chart-container[b-crdmexxv96] {
        margin: 60px 40px 60px 80px;
    }
}

@media (min-width: 767px) and (max-width: 1025px) {
    .filter-transaction-status-card[b-crdmexxv96] {
        min-height: auto;
    }

    .transaction-badge[b-crdmexxv96] {
        margin-bottom: 1rem;
    }

    .description-text[b-crdmexxv96] {
        margin-bottom: 1rem;
    }

    .description-text[b-crdmexxv96] {
        display: inline-block;
        width: 100%;
        gap: 1rem;
    }
}

/* === TABLETS (768px to 1024px): Show mobile filter button === */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Hide desktop filter panel */
    .filter-desktop-panel.d-md-block[b-crdmexxv96] {
        display: none !important;
    }
    
    /* Show mobile filter button */
    .filter-mobile-toggle.d-md-none[b-crdmexxv96] {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Show mobile offcanvas */
    .offcanvas.d-md-none[b-crdmexxv96] {
        display: block !important;
    }
    
    /* Full width dashboard content */
    .dashboard-content-area.col-md-9[b-crdmexxv96] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* Responsive layout adjustments */
    .user-header-responsive[b-crdmexxv96] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .user-header-responsive .user-period-controls[b-crdmexxv96] {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-start;
        gap: 0.5rem !important;
    }

    /* TABLET-SPECIFIC: Make dropdowns longer - double the width */
    .user-period-controls .form-select[b-crdmexxv96],
    .dashboard-period-row .form-select[b-crdmexxv96] {
        min-width: 150px !important;
        width: 150px !important;
        max-width: 150px !important;
    }

    .user-period-controls > div[b-crdmexxv96] {
        min-width: 150px !important;
        width: 150px !important;
    }

    .user-period-controls > div.me-3[b-crdmexxv96],
    .user-period-controls > div:first-child[b-crdmexxv96] {
        margin-right: 0.5rem !important;
    }

    .dashboard-period-row .col-3[b-crdmexxv96] {
        min-width: 150px !important;
        flex: 0 0 150px !important;
        max-width: 150px !important;
    }

    .dashboard-period-row .col-3:first-child[b-crdmexxv96] {
        margin-right: 0.5rem !important;
    }

    .dashboard-period-row.row[b-crdmexxv96] {
        gap: 0.5rem !important;
    }
    
    /* Chart responsive behavior */
    .chart-responsive[b-crdmexxv96] {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .chart-container[b-crdmexxv96] {
        margin: 60px 10px 60px 60px;
        min-width: 700px;
        position: relative;
    }
    
    .chart-bars[b-crdmexxv96] {
        min-width: 700px;
        width: max-content;
    }
    
    .chart-month-group[b-crdmexxv96] {
        min-width: 90px;
        flex: 0 0 90px;
    }
    
    .chart-month-label[b-crdmexxv96] {
        white-space: nowrap;
        font-size: 0.75em !important;
    }
    
    .chart-scroll-indicator[b-crdmexxv96] {
        display: block;
        text-align: center;
        margin-top: 10px;
        color: #6c757d;
        font-size: 0.85em;
    }
    
    .offcanvas.offcanvas-start[b-crdmexxv96] {
        width: 350px;
    }
}

/* === MOBILE (below 768px): Show mobile filter button === */
@media (max-width: 767px) {
    /* Hide desktop filter panel */
    .filter-desktop-panel.d-md-block[b-crdmexxv96] {
        display: none !important;
    }
    
    /* Show mobile filter button */
    .filter-mobile-toggle.d-md-none[b-crdmexxv96] {
        display: block !important;
    }
    
    /* Show mobile offcanvas */
    .offcanvas.d-md-none[b-crdmexxv96] {
        display: block !important;
    }
    
    /* Full width dashboard content */
    .dashboard-content-area.col-md-9[b-crdmexxv96] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* Mobile layout adjustments */
    .user-header-responsive[b-crdmexxv96] {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
        width: 100% !important;
    }
    
    .user-header-responsive .user-period-controls[b-crdmexxv96] {
        margin-left: 0 !important;
        margin-top: 0.5rem;
        width: 100%;
        justify-content: flex-start;
    }
    
    /* Mobile chart optimizations */
    .chart-container[b-crdmexxv96] {
        margin: 40px 5px 40px 50px;
        min-width: 500px;
    }
    
    .chart-bars[b-crdmexxv96] {
        min-width: 500px;
    }
    
    .chart-month-group[b-crdmexxv96] {
        min-width: 70px;
        flex: 0 0 70px;
    }
    
    .chart-y-axis[b-crdmexxv96] {
        left: -50px !important;
        font-size: 0.65em;
    }
    
    .chart-month-label[b-crdmexxv96] {
        font-size: 0.65em !important;
        margin-top: 3px;
    }
    
    .chart-scroll-indicator[b-crdmexxv96] {
        display: block;
    }
    
    .filter-scroll-container[b-crdmexxv96] {
        max-height: 150px;
    }
    
    .mobile-filter-card .card-body[b-crdmexxv96] {
        padding: 0.5rem;
    }
}

/* Small screens below 321px - Stack year and month vertically */
@media (max-width: 321px) {

    .filter-transaction-status-card[b-crdmexxv96] {
        min-height: auto;
    }

    .transaction-badge[b-crdmexxv96] {
        margin-bottom: 0.5rem;
    }

    .description-text[b-crdmexxv96] {
        margin-bottom: 1rem;
    }

    .transaction-checkbox[b-crdmexxv96],
    .description-text[b-crdmexxv96] {
        display: inline-block;
        width: 100%;
    }
}

/* Small screens below 425px - Stack year and month vertically */
@media (max-width: 426px) {

    .filter-transaction-status-card[b-crdmexxv96] {
        min-height: auto;
    }

    .transaction-badge[b-crdmexxv96] {
        margin-bottom: 0.5rem;
    }

    .description-text[b-crdmexxv96] {
        margin-bottom: 1rem;
    }

    .transaction-checkbox[b-crdmexxv96],
    .description-text[b-crdmexxv96] {
        display: inline-block;
        width: 100%;
    }

    /* CRITICAL: Admin users - Force Bootstrap columns to stack vertically */
    .container-fluid .row.dashboard-period-row.mb-3 .col-3[b-crdmexxv96],
    .row.mb-3.dashboard-period-row .col-3[b-crdmexxv96],
    .dashboard-period-row.row.mb-3 .col-3[b-crdmexxv96],
    .card-body .row.dashboard-period-row .col-3[b-crdmexxv96],
    .dashboard-period-row .col-3[b-crdmexxv96] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        display: block !important;
    }

        .container-fluid .row.dashboard-period-row.mb-3 .col-3:last-child[b-crdmexxv96],
        .row.mb-3.dashboard-period-row .col-3:last-child[b-crdmexxv96],
        .dashboard-period-row.row.mb-3 .col-3:last-child[b-crdmexxv96],
        .card-body .row.dashboard-period-row .col-3:last-child[b-crdmexxv96],
        .dashboard-period-row .col-3:last-child[b-crdmexxv96] {
            margin-bottom: 0 !important;
        }

    /* CRITICAL: Force the row itself to stack vertically */
    .container-fluid .row.dashboard-period-row.mb-3[b-crdmexxv96],
    .row.mb-3.dashboard-period-row[b-crdmexxv96],
    .dashboard-period-row.row.mb-3[b-crdmexxv96],
    .card-body .row.dashboard-period-row[b-crdmexxv96],
    .dashboard-period-row.row[b-crdmexxv96],
    .dashboard-period-row[b-crdmexxv96] {
        flex-direction: column !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
    }

    /* CRITICAL: Regular users - Force flexbox to stack vertically */
    .user-header-responsive .user-period-controls.d-flex.me-4[b-crdmexxv96],
    .user-header-responsive .user-period-controls.d-flex[b-crdmexxv96],
    .user-header-responsive .user-period-controls[b-crdmexxv96],
    .user-period-controls.d-flex.me-4[b-crdmexxv96],
    .user-period-controls.d-flex[b-crdmexxv96],
    .user-period-controls[b-crdmexxv96] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }

    /* CRITICAL: Force individual period control containers to full width */
    .user-period-controls.d-flex.me-4 > div.me-3[b-crdmexxv96],
    .user-period-controls.d-flex > div.me-3[b-crdmexxv96],
    .user-period-controls > div.me-3[b-crdmexxv96],
    .user-period-controls.d-flex.me-4 > div[b-crdmexxv96],
    .user-period-controls.d-flex > div[b-crdmexxv96],
    .user-period-controls > div[b-crdmexxv96] {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    /* CRITICAL: Ensure form selects take full width */
    .user-period-controls .form-select[b-crdmexxv96],
    .dashboard-period-row .form-select[b-crdmexxv96] {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }

    /* CRITICAL: Ensure form labels are properly styled */
    .user-period-controls .form-label[b-crdmexxv96],
    .dashboard-period-row .form-label[b-crdmexxv96] {
        margin-bottom: 0.25rem !important;
        font-weight: 600 !important;
        display: block !important;
        width: 100% !important;
    }

    /* CRITICAL: Ensure proper spacing for stacked layout */
    .user-header-responsive[b-crdmexxv96] {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* CRITICAL: Override any conflicting margin classes */
    .me-3[b-crdmexxv96], .me-4[b-crdmexxv96], .ms-3[b-crdmexxv96], .ms-4[b-crdmexxv96] {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* CRITICAL: Ensure container flexibility */
    .card-body[b-crdmexxv96] {
        padding: 0.75rem !important;
    }
}

    /* Legend responsive styles */
    /*.legend-container {
    flex-direction: row;
}

.legend-item {
    flex-wrap: wrap;
}*/

    /* Mobile styles for legend - 425px and below */
    @media (max-width: 425px) {
        .legend-container[b-crdmexxv96] {
            flex-direction: column;
            align-items: flex-start !important;
        }

        .legend-item[b-crdmexxv96] {
            width: 100%;
            margin-bottom: 1rem;
            flex-direction: column;
            align-items: flex-start !important;
            gap: 0.5rem;
        }

            .legend-item span.fw-bold[b-crdmexxv96] {
                margin-bottom: 0.5rem;
                display: block;
            }

            .legend-item .d-flex[b-crdmexxv96] {
                margin-bottom: 0.25rem;
            }
    }
    /* ========================================
   END OF DASHBOARD STYLES
   ======================================== */
/* /Components/Pages/Login.razor.rz.scp.css */
.login-page-background[b-4nzx773sn2] {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align to the top */
    padding: 5rem 1rem 1rem 1rem; /* Add padding to push content down from the top */
}

[b-4nzx773sn2] .login-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    border: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
    color: #333;
}

[b-4nzx773sn2] .login-form-box {
    width: 40%;
    max-width: 800px;
    margin: 1rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: white !important;
}

    [b-4nzx773sn2] .login-form-box .form-control {
        width: 100%;
        border-radius: 0.25rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    [b-4nzx773sn2] .login-form-box .btn-primary {
        width: 30%;
        display: block;
        margin: 0 auto;
        background-color: #007bff;
        border-color: #007bff;
        color: white;
    }

        [b-4nzx773sn2] .login-form-box .btn-primary:hover {
            background-color: #0056b3;
            border-color: #004085;
        }

        [b-4nzx773sn2] .login-form-box .btn-primary:disabled {
            background-color: #6c757d;
            border-color: #6c757d;
        }

/* Correct styles for the password input group */
[b-4nzx773sn2] .input-password {
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    [b-4nzx773sn2] .input-password .form-control {
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        box-shadow: none; /* Remove individual shadow for input group */
    }

    [b-4nzx773sn2] .input-password .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-left: 0;
        background-color: #007bff;
        border-color: #007bff;
        color: white;
    }

        [b-4nzx773sn2] .input-password .btn:hover {
            background-color: #0056b3;
            border-color: #004085;
        }

[b-4nzx773sn2] .form-label {
    font-weight: bold;
    color: #333;
}

[b-4nzx773sn2] .alert-danger {
    border-radius: 0.25rem;
    margin-bottom: 1rem;
}

[b-4nzx773sn2] .spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

@media (max-width: 1440px) and (min-width: 769px){
    .login-page-background[b-4nzx773sn2] {
        padding-top: 2rem; /* Adjust padding for mobile */
    }

    [b-4nzx773sn2] .login-form-box {
        width: 100%;
        max-width: 90%;
        min-height: 100%;
        height: auto;
        padding: 2rem;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 3rem;
    }

    [b-4nzx773sn2] .login-form-box .btn-primary {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .login-page-background[b-4nzx773sn2] {
        padding-top: 2rem; /* Adjust padding for mobile */
    }

    [b-4nzx773sn2] .login-form-box {
        width: 100%;
        max-width: 90%;
        min-height: 100%;
        height: auto;
        padding: 2rem;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    [b-4nzx773sn2] .login-form-box .btn-primary {
        width: 100%;
    }
}
/* /Components/Pages/Logout.razor.rz.scp.css */
.logout-page-background[b-9vyu7v0sc2] {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align to the top */
    padding: 5rem 1rem 1rem 1rem; /* Add padding to push content down from the top */
}

[b-9vyu7v0sc2] .logout-title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    border: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
    color: #333;
}

[b-9vyu7v0sc2] .logout-form-box {
    width: 25%;
    max-width: 800px;
    margin: 1rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center the text and button inside */
    background-color: white !important;
}

    [b-9vyu7v0sc2] .logout-form-box p {
        margin-bottom: 1rem;
        color: #333;
    }

    [b-9vyu7v0sc2] .logout-form-box strong {
        color: #007bff;
    }

.logout-actions[b-9vyu7v0sc2] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

[b-9vyu7v0sc2] .logout-form-box .btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    padding: 0.5rem 1.5rem;
    min-width: 100px;
}

    [b-9vyu7v0sc2] .logout-form-box .btn-primary:hover {
        background-color: #c82333;
        border-color: #bd2130;
    }

[b-9vyu7v0sc2] .logout-form-box .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    padding: 0.5rem 1.5rem;
    min-width: 100px;
}

    [b-9vyu7v0sc2] .logout-form-box .btn-secondary:hover {
        background-color: #5a6268;
        border-color: #545b62;
    }

@media (max-width: 1097.98px) {
    .logout-page-background[b-9vyu7v0sc2] {
        padding-top: 2rem; /* Adjust padding for mobile */
    }

    [b-9vyu7v0sc2] .logout-form-box {
        width: 100%;
        max-width: 100%;
        min-height: 100%;
        height: auto;
        margin: 0;
        padding: 2rem;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .logout-actions[b-9vyu7v0sc2] {
        flex-direction: column;
        gap: 0.5rem;
    }

    [b-9vyu7v0sc2] .logout-form-box .btn-primary,
    [b-9vyu7v0sc2] .logout-form-box .btn-secondary {
        width: 100%;
        min-width: unset;
    }
}
/* /Components/Shared/UserSummaryCards.razor.rz.scp.css */
.draggable-modal .modal-header[b-mm4ywmhxuy] {
    cursor: move;
}

.table-container[b-mm4ywmhxuy] {
border: 1px solid #dee2e6;
border-radius: 0.375rem;
}

.table-container[b-mm4ywmhxuy]::-webkit-scrollbar {
width: 8px;
height: 8px;
}

.table-container[b-mm4ywmhxuy]::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 4px;
}

.table-container[b-mm4ywmhxuy]::-webkit-scrollbar-thumb {
background: #c1c1c1;
border-radius: 4px;
}

.table-container[b-mm4ywmhxuy]::-webkit-scrollbar-thumb:hover {
background: #a8a8a8;
}

.modal-fullscreen .modal-dialog[b-mm4ywmhxuy] {
    width: 95vw;
    height: 95vh;
    max-width: none;
    max-height: none;
    margin: 2.5vh auto;
}

.modal-fullscreen .modal-content[b-mm4ywmhxuy] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-fullscreen .modal-body[b-mm4ywmhxuy] {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.rounded-modal[b-mm4ywmhxuy] {
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.custom-modal-size[b-mm4ywmhxuy] {
width: 90vw;
max-width: 90vw;
height: 85vh;
max-height: 85vh;
margin: 2.5vh auto;
}

.custom-modal-size .modal-content[b-mm4ywmhxuy] {
height: 100%;
display: flex;
flex-direction: column;
}
