@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';

/* /Components/Account/Shared/Notification.razor.rz.scp.css */
.notification-container[b-2x1ni7ctgb] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification[b-2x1ni7ctgb] {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: slideIn-b-2x1ni7ctgb 0.5s ease-in-out;
    transform-origin: right;
}

    .notification.success[b-2x1ni7ctgb] {
        background-color: #4caf50;
        color: white;
    }

    .notification.error[b-2x1ni7ctgb] {
        background-color: #f44336;
        color: white;
    }

    .notification.info[b-2x1ni7ctgb] {
        background-color: #2196f3;
        color: white;
    }

    .notification.warning[b-2x1ni7ctgb] {
        background-color: #ff9800;
        color: white;
    }

.slide-out[b-2x1ni7ctgb] {
    animation: slideOut-b-2x1ni7ctgb 0.5s ease-in-out forwards;
}

@keyframes slideIn-b-2x1ni7ctgb {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut-b-2x1ni7ctgb {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
/* /Components/Account/Shared/QrScannerModalComponent.razor.rz.scp.css */
.modal-overlay[b-du8st0uird] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in;
}

.modal-content[b-du8st0uird] {
    background: white;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    width: 700px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
    overflow: hidden;
}

.modal-header[b-du8st0uird] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

    .modal-header h4[b-du8st0uird] {
        margin: 0;
        font-size: 1.5rem;
    }

.close-btn[b-du8st0uird] {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

    .close-btn:hover[b-du8st0uird] {
        background-color: rgba(255, 255, 255, 0.2);
    }

.modal-body[b-du8st0uird] {
    padding: 30px;
    text-align: center;
}

#reader[b-du8st0uird] {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.scanner-section[b-du8st0uird] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scanner-actions[b-du8st0uird] {
    margin-top: 20px;
}

.start-section p[b-du8st0uird] {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.result-container[b-du8st0uird] {
    text-align: center;
}

.success-result[b-du8st0uird] {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.error-result[b-du8st0uird] {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

    .success-result h5[b-du8st0uird],
    .error-result h5[b-du8st0uird] {
        margin-bottom: 15px;
        font-size: 1.3rem;
    }

.result-text[b-du8st0uird] {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
    word-break: break-all;
    font-family: monospace;
    font-size: 0.95rem;
}

.link-btn[b-du8st0uird] {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

    .link-btn:hover[b-du8st0uird] {
        background: rgba(255, 255, 255, 0.3);
        color: white;
        text-decoration: none;
    }

.modal-actions[b-du8st0uird] {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn[b-du8st0uird] {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 140px;
}

.btn-large[b-du8st0uird] {
    padding: 15px 30px;
    font-size: 18px;
    min-width: 180px;
}

.btn-primary[b-du8st0uird] {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

    .btn-primary:hover[b-du8st0uird] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    }

.btn-secondary[b-du8st0uird] {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

    .btn-secondary:hover[b-du8st0uird] {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    }

/* Animations */
@@keyframes fadeIn {
    from[b-du8st0uird] {
        opacity: 0;
    }

    to[b-du8st0uird] {
        opacity: 1;
    }
}

@@keyframes slideIn {
    from[b-du8st0uird] {
        opacity: 0;
        transform: scale(0.9) translateY(-50px);
    }

    to[b-du8st0uird] {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Responsiveness */
@@media (max-width: 768px) {
    .modal-content[b-du8st0uird] {
        width: 95%;
        margin: 20px;
    }

    .modal-body[b-du8st0uird] {
        padding: 20px;
    }

    .modal-actions[b-du8st0uird] {
        flex-direction: column;
        align-items: center;
    }

    .btn[b-du8st0uird] {
        width: 100%;
        max-width: 250px;
    }
}
/* /Components/Layout/CenteredLayout.razor.rz.scp.css */
.centered-layout[b-ob7cg90d8e] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-739djkm78g] {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Prevent horizontal overflow */
    /*height: 100vh;
    width: 100vw;*/
}

main[b-739djkm78g] {
    flex: 1;
}

.sidebar[b-739djkm78g] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-739djkm78g] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-739djkm78g]  a, .top-row[b-739djkm78g]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-739djkm78g]  a:hover, .top-row[b-739djkm78g]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-739djkm78g]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-739djkm78g] {
        justify-content: space-between;
    }

    .top-row[b-739djkm78g]  a, .top-row[b-739djkm78g]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-739djkm78g] {
        flex-direction: row;
    }

    .sidebar[b-739djkm78g] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-739djkm78g] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-739djkm78g]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-739djkm78g], article[b-739djkm78g] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-739djkm78g] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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-739djkm78g] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-rg61plsfb0] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    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.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center / 1.75rem rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:checked[b-rg61plsfb0] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-rg61plsfb0] {
    height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

    .top-row .container-fluid[b-rg61plsfb0] {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 1rem;
    }

.navbar-brand[b-rg61plsfb0] {
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-scrollable[b-rg61plsfb0] {
    display: none;
    height: calc(100vh - 3.5rem);
    overflow-y: auto;
    background: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.navbar-toggler:checked ~ .nav-scrollable[b-rg61plsfb0] {
    display: block;
}

.nav-item[b-rg61plsfb0] {
    font-size: 0.9rem;
    position: relative;
    width: 100%;
}

    .nav-item button[b-rg61plsfb0],
    .nav-item a[b-rg61plsfb0] {
        width: 100%;
        justify-content: flex-start;
    }

.nav-link[b-rg61plsfb0] {
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 8px;
    height: 3rem;
    display: flex !important;
    align-items: center;
    line-height: 3rem;
    text-decoration: none !important;
    background: none !important;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    margin: 0.125rem 0.5rem;
}

    .nav-link:hover[b-rg61plsfb0] {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: white !important;
        transform: translateX(3px);
    }

    .nav-link:focus[b-rg61plsfb0] {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
    }

    .nav-link.active[b-rg61plsfb0] {
        background-color: rgba(255, 255, 255, 0.25) !important;
        color: white !important;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

.dropdown-toggle[b-rg61plsfb0] {
    cursor: pointer;
    position: relative;
}

    .dropdown-toggle[b-rg61plsfb0]::after {
        display: none;
    }

.submenu-container[b-rg61plsfb0] {
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid rgba(255, 255, 255, 0.4);
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    border-radius: 0 8px 8px 0;
    animation: slideDown-b-rg61plsfb0 0.3s ease-out;
    padding: 0.5rem 0;
}

    /* Specific styles for submenu links - both anchor and NavLink */
    .submenu-link[b-rg61plsfb0],
    .submenu-container .nav-link[b-rg61plsfb0] {
        font-size: 0.85rem !important;
        padding: 0.75rem 1rem 0.75rem 2.5rem !important;
        color: rgba(255, 255, 255, 0.85) !important;
        height: auto !important;
        line-height: 1.4 !important;
        min-height: 2.5rem !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        border-radius: 4px !important;
        background: transparent !important;
    }

        .submenu-link:hover[b-rg61plsfb0],
        .submenu-container .nav-link:hover[b-rg61plsfb0] {
            color: white !important;
            background-color: rgba(255, 255, 255, 0.15) !important;
            transform: translateX(3px);
        }

        .submenu-link.active[b-rg61plsfb0],
        .submenu-container .nav-link.active[b-rg61plsfb0] {
            background-color: rgba(255, 255, 255, 0.25) !important;
            color: white !important;
            font-weight: 500 !important;
            border-left: 3px solid #fff !important;
        }

    /* Override Blazor NavLink specific styles */
    .submenu-container a[href][b-rg61plsfb0] {
        color: rgba(255, 255, 255, 0.85) !important;
        text-decoration: none !important;
    }

        .submenu-container a[href]:hover[b-rg61plsfb0] {
            color: white !important;
            text-decoration: none !important;
        }

        .submenu-container a[href]:focus[b-rg61plsfb0] {
            color: white !important;
            text-decoration: none !important;
        }

    .submenu-link i[b-rg61plsfb0],
    .submenu-container .nav-link i[b-rg61plsfb0] {
        width: 18px !important;
        text-align: center;
        font-size: 0.9rem;
        margin-right: 0.75rem !important;
        opacity: 0.8;
    }

    .submenu-link span[b-rg61plsfb0],
    .submenu-container .nav-link span[b-rg61plsfb0] {
        flex: 1;
    }

.logout-btn[b-rg61plsfb0] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.8) !important;
    width: 100%;
    text-align: left;
}

    .logout-btn:hover[b-rg61plsfb0] {
        background-color: rgba(220, 53, 69, 0.2) !important;
        color: #ff6b6b !important;
    }

/* Make sure icons are visible with higher specificity */
.nav-link i.bi[b-rg61plsfb0],
.nav-link i[class*="bi-"][b-rg61plsfb0] {
    display: inline-block !important;
    width: 20px !important;
    text-align: center !important;
    font-size: 1rem !important;
    margin-right: 0.75rem !important;
    opacity: 1 !important;
    color: inherit !important;
    vertical-align: middle !important;
}

/* Specific fixes for dropdown buttons */
button.nav-link i.bi[b-rg61plsfb0],
button.nav-link i[class*="bi-"][b-rg61plsfb0] {
    display: inline-block !important;
    visibility: visible !important;
}

/* Logout button icon fix */
.logout-btn i.bi[b-rg61plsfb0],
.logout-btn i[class*="bi-"][b-rg61plsfb0] {
    display: inline-block !important;
    width: 20px !important;
    text-align: center !important;
    font-size: 1rem !important;
    margin-right: 0.75rem !important;
    opacity: 1 !important;
    color: inherit !important;
}

/* Make sure icons are visible */
.nav-link i[b-rg61plsfb0] {
    display: inline-block !important;
    width: 20px !important;
    text-align: center !important;
    font-size: 1rem !important;
    margin-right: 0.75rem !important;
    opacity: 1 !important;
}

@keyframes slideDown-b-rg61plsfb0 {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-rg61plsfb0] {
        display: none;
    }

    .nav-scrollable[b-rg61plsfb0] {
        display: block;
        position: sticky;
        top: 0;
        z-index: 1000;
        height: 100vh;
        width: 250px;
    }
}

/* Custom scrollbar */
.nav-scrollable[b-rg61plsfb0]::-webkit-scrollbar {
    width: 6px;
}

.nav-scrollable[b-rg61plsfb0]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.nav-scrollable[b-rg61plsfb0]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

    .nav-scrollable[b-rg61plsfb0]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }

/* Responsive improvements */
@media (max-width: 640px) {
    .nav-item[b-rg61plsfb0] {
        font-size: 0.85rem;
    }

    .nav-link[b-rg61plsfb0] {
        height: 2.5rem !important;
        line-height: 2.5rem !important;
        padding: 0.25rem 0.75rem !important;
    }

    .submenu-link[b-rg61plsfb0],
    .submenu-container .nav-link[b-rg61plsfb0] {
        padding-left: 1.5rem !important;
    }
}

/* Add this to ensure Bootstrap Icons are loaded */
.nav-item button.nav-link[b-rg61plsfb0] {
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-align: left !important;
    cursor: pointer;
}

    .nav-item button.nav-link:hover[b-rg61plsfb0] {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: white !important;
    }
/* /Components/Pages/Client/AddorEditClient.razor.rz.scp.css */
.form-floating > .form-control:focus ~ label[b-v8ceamsrek],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-v8ceamsrek] {
    color: #0d6efd;
}

.card[b-v8ceamsrek] {
    border-radius: 15px;
    
    
    
    : hidden;
}

.card-header[b-v8ceamsrek] {
    background: linear-gradient(135deg, #0d6efd 0%, #0056b3 100%);
}

.btn[b-v8ceamsrek] {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn:hover[b-v8ceamsrek] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.form-control[b-v8ceamsrek] {
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

    .form-control:focus[b-v8ceamsrek] {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

.spinner-border[b-v8ceamsrek] {
    width: 3rem;
    height: 3rem;
}
/* /Components/Pages/Client/Dashboard.razor.rz.scp.css */
.expand-container[b-8vxyruzbe7] {
    overflow: hidden;
}

.expand-content[b-8vxyruzbe7] {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

    .expand-content.show[b-8vxyruzbe7] {
        max-height: 500px; /* enough to fit content */
        opacity: 1;
    }
/* /Components/Pages/User/UserDashboard.razor.rz.scp.css */
.card[b-gji39z7yn9] {
        border-radius: 0.5rem;
        overflow: hidden;
    }

    .card-header[b-gji39z7yn9] {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .card-footer[b-gji39z7yn9] {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .table-hover tbody tr:hover[b-gji39z7yn9] {
        background-color: rgba(13, 110, 253, 0.04);
    }

    .badge[b-gji39z7yn9] {
        font-weight: 500;
        padding: 0.5em 0.75em;
    }

    .btn-group-sm > .btn[b-gji39z7yn9],
    .btn-sm[b-gji39z7yn9] {
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
        border-radius: 0.25rem;
    }

    .input-group-text[b-gji39z7yn9] {
        background-color: #f8f9fa;
    }

    .page-link[b-gji39z7yn9] {
        color: #0d6efd;
        border-color: #dee2e6;
    }

    .page-link:hover[b-gji39z7yn9] {
        background-color: #f8f9fa;
    }

    .page-item.active .page-link[b-gji39z7yn9] {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

    .table th[b-gji39z7yn9] {
        font-weight: 600;
        white-space: nowrap;
        background-color: #f8f9fa;
    }

    .table td[b-gji39z7yn9] {
        vertical-align: middle;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
        .d-flex.gap-2[b-gji39z7yn9] {
            flex-wrap: wrap;
        }

        .d-flex.gap-2 > *[b-gji39z7yn9] {
            margin-bottom: 0.5rem;
        }
    }
