@import '_content/Microsoft.AspNetCore.Components.QuickGrid/Microsoft.AspNetCore.Components.QuickGrid.25o87uqmvr.bundle.scp.css';

/* _content/YumBlazor/Components/Account/Pages/LoginPage.razor.rz.scp.css */
/* Main login page container */
.login-page[b-jadvc6npmb] {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Background styling */
.login-background[b-jadvc6npmb] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: -2;
}

.background-pattern[b-jadvc6npmb] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    background-size: 400px 400px;
    animation: float-b-jadvc6npmb 20s ease-in-out infinite;
}

.background-overlay[b-jadvc6npmb] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}

@keyframes float-b-jadvc6npmb {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Login container */
.login-container[b-jadvc6npmb] {
    position: relative;
    z-index: 1;
    padding: 2rem 1rem;
}

/* Login card */
.login-card[b-jadvc6npmb] {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp-b-jadvc6npmb 0.6s ease-out;
}

@keyframes slideUp-b-jadvc6npmb {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header section */
.login-header[b-jadvc6npmb] {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container[b-jadvc6npmb] {
    margin-bottom: 1.5rem;
}

.login-logo[b-jadvc6npmb] {
    width: 120px;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.login-logo:hover[b-jadvc6npmb] {
    transform: scale(1.05);
}

.welcome-title[b-jadvc6npmb] {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.welcome-subtitle[b-jadvc6npmb] {
    color: #718096;
    font-size: 1rem;
    margin: 0;
}

/* Form styling */
.login-form[b-jadvc6npmb] {
    margin-bottom: 2rem;
}

.form-group[b-jadvc6npmb] {
    margin-bottom: 1.5rem;
}

.form-label[b-jadvc6npmb] {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Custom input group */
.input-group-custom[b-jadvc6npmb] {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon[b-jadvc6npmb] {
    position: absolute;
    left: 1rem;
    z-index: 3;
    color: #a0aec0;
    font-size: 1.1rem;
}

.form-control-custom[b-jadvc6npmb] {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control-custom:focus[b-jadvc6npmb] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.form-control-custom[b-jadvc6npmb]::placeholder {
    color: #a0aec0;
}

/* Password toggle */
.password-toggle[b-jadvc6npmb] {
    position: absolute;
    right: 1rem;
    z-index: 3;
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.password-toggle:hover[b-jadvc6npmb] {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Form options */
.form-options[b-jadvc6npmb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Custom checkbox */
.checkbox-container[b-jadvc6npmb] {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox-input[b-jadvc6npmb] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom[b-jadvc6npmb] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 0.375rem;
    background: white;
    transition: all 0.2s ease;
    margin-right: 0.75rem;
}

.checkbox-input:checked + .checkbox-custom[b-jadvc6npmb] {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-input:checked + .checkbox-custom[b-jadvc6npmb]::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.checkbox-label[b-jadvc6npmb] {
    color: #4a5568;
    font-size: 0.9rem;
}

.forgot-password[b-jadvc6npmb] {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.forgot-password:hover[b-jadvc6npmb] {
    color: #764ba2;
    text-decoration: underline;
}

/* Login button */
.btn-login[b-jadvc6npmb] {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-login:hover:not(:disabled)[b-jadvc6npmb] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-login:active[b-jadvc6npmb] {
    transform: translateY(0);
}

.btn-login:disabled[b-jadvc6npmb] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Footer section */
.login-footer[b-jadvc6npmb] {
    text-align: center;
}

.divider[b-jadvc6npmb] {
    position: relative;
    margin: 1.5rem 0;
    text-align: center;
}

.divider[b-jadvc6npmb]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

.divider span[b-jadvc6npmb] {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 1rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-links[b-jadvc6npmb] {
    margin-top: 1rem;
}

.signup-text[b-jadvc6npmb] {
    color: #718096;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.signup-link[b-jadvc6npmb] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.signup-link:hover[b-jadvc6npmb] {
    color: #764ba2;
    text-decoration: underline;
}

/* Validation styling */
.validation-summary[b-jadvc6npmb] {
    border-radius: 1rem;
    border: none;
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    color: #c53030;
    margin-bottom: 1.5rem;
}

.validation-message[b-jadvc6npmb] {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Status message styling */
.status-message[b-jadvc6npmb] {
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .login-card[b-jadvc6npmb] {
        padding: 2rem 1.5rem;
        border-radius: 1.5rem;
        margin: 1rem;
    }
    
    .welcome-title[b-jadvc6npmb] {
        font-size: 1.75rem;
    }
    
    .form-options[b-jadvc6npmb] {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .forgot-password[b-jadvc6npmb] {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .login-container[b-jadvc6npmb] {
        padding: 1rem 0.5rem;
    }
    
    .login-card[b-jadvc6npmb] {
        padding: 1.5rem 1rem;
    }
    
    .welcome-title[b-jadvc6npmb] {
        font-size: 1.5rem;
    }
    
    .login-logo[b-jadvc6npmb] {
        width: 100px;
    }
}

/* Loading state */
.spinner-border-sm[b-jadvc6npmb] {
    width: 1rem;
    height: 1rem;
}

/* Focus states for accessibility */
.form-control-custom:focus[b-jadvc6npmb],
.checkbox-input:focus + .checkbox-custom[b-jadvc6npmb],
.btn-login:focus[b-jadvc6npmb] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .login-card[b-jadvc6npmb] {
        background: white;
        border: 2px solid #000;
    }
    
    .form-control-custom[b-jadvc6npmb] {
        border-color: #000;
    }
    
    .btn-login[b-jadvc6npmb] {
        background: #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .login-card[b-jadvc6npmb],
    .background-pattern[b-jadvc6npmb],
    .login-logo[b-jadvc6npmb],
    *[b-jadvc6npmb] {
        animation: none !important;
        transition: none !important;
    }
}
/* _content/YumBlazor/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-q0lwrqb37g] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-q0lwrqb37g] {
    flex: 1;
}

.sidebar[b-q0lwrqb37g] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-q0lwrqb37g] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-q0lwrqb37g]  a, .top-row[b-q0lwrqb37g]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-q0lwrqb37g]  a:hover, .top-row[b-q0lwrqb37g]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-q0lwrqb37g]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-q0lwrqb37g] {
        justify-content: space-between;
    }

    .top-row[b-q0lwrqb37g]  a, .top-row[b-q0lwrqb37g]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-q0lwrqb37g] {
        flex-direction: row;
    }

    .sidebar[b-q0lwrqb37g] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-q0lwrqb37g] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-q0lwrqb37g]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-q0lwrqb37g], article[b-q0lwrqb37g] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-q0lwrqb37g] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-q0lwrqb37g] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/YumBlazor/Components/Layout/NavBar.razor.rz.scp.css */
/* _content/YumBlazor/Components/Layout/NavBarAdmin.razor.rz.scp.css */
.navbar-toggler[b-xapunvc995] {
    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-xapunvc995] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-xapunvc995] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-xapunvc995] {
    font-size: 1.1rem;
}

.bi[b-xapunvc995] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-xapunvc995] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-xapunvc995] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-xapunvc995] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xapunvc995] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xapunvc995]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-xapunvc995]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-xapunvc995]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-xapunvc995] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-xapunvc995] {
    display: block;
}

.nav-scrollable nav[b-xapunvc995] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 3.5rem);
}

.nav-spacer[b-xapunvc995] {
    flex-grow: 1;
}

.navbar-user-info[b-xapunvc995] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.user-info-nav[b-xapunvc995] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1rem;
}

.nav-user-info[b-xapunvc995] {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.nav-user-display[b-xapunvc995] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-profile-image[b-xapunvc995] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-profile-placeholder[b-xapunvc995] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
}

.nav-user-details[b-xapunvc995] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.nav-user-name[b-xapunvc995] {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-user-email[b-xapunvc995] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Logout button styling */
.logout-button[b-xapunvc995] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.logout-text[b-xapunvc995] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logout-user-name[b-xapunvc995] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 0.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-user-info[b-xapunvc995] {
        order: -1;
        margin-left: 0;
        margin-right: auto;
    }
    
    .user-name[b-xapunvc995] {
        max-width: 100px;
        font-size: 0.8rem;
    }
    
    .navbar-profile-image[b-xapunvc995],
    .navbar-profile-placeholder[b-xapunvc995] {
        width: 28px;
        height: 28px;
    }
    
    .logout-user-name[b-xapunvc995] {
        font-size: 0.7rem;
    }
    
    .nav-user-name[b-xapunvc995] {
        font-size: 0.8rem;
    }
    
    .nav-user-email[b-xapunvc995] {
        font-size: 0.7rem;
    }
    
    .nav-profile-image[b-xapunvc995],
    .nav-profile-placeholder[b-xapunvc995] {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .user-name[b-xapunvc995] {
        display: none;
    }
    
    .logout-user-name[b-xapunvc995] {
        display: none;
    }
    
    .nav-user-email[b-xapunvc995] {
        display: none;
    }
}

/* Additional styling for better appearance */
.logout-button:hover .logout-user-name[b-xapunvc995] {
    color: rgba(255, 255, 255, 0.9);
}

.nav-user-info:hover[b-xapunvc995] {
    background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 641px) {
    .navbar-toggler[b-xapunvc995] {
        display: none;
    }

    .nav-scrollable[b-xapunvc995] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/YumBlazor/Components/Layout/NavBarEmployee1.razor.rz.scp.css */
.navbar-toggler[b-onv4rhhhzv] {
    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-onv4rhhhzv] {
        background-color: rgba(255, 255, 255, 0.5);
    }

.top-row[b-onv4rhhhzv] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-onv4rhhhzv] {
    font-size: 1.1rem;
}

.bi[b-onv4rhhhzv] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-onv4rhhhzv] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-onv4rhhhzv] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-onv4rhhhzv] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-onv4rhhhzv] {
        padding-bottom: 1rem;
    }

    .nav-item[b-onv4rhhhzv]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    .nav-item[b-onv4rhhhzv]  a.active {
        background-color: rgba(255,255,255,0.37);
        color: white;
    }

    .nav-item[b-onv4rhhhzv]  .nav-link:hover {
        background-color: rgba(255,255,255,0.1);
        color: white;
    }

.nav-scrollable[b-onv4rhhhzv] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-onv4rhhhzv] {
    display: block;
}

.nav-scrollable nav[b-onv4rhhhzv] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 3.5rem);
}

.nav-spacer[b-onv4rhhhzv] {
    flex-grow: 1;
}

.navbar-user-info[b-onv4rhhhzv] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.user-info-nav[b-onv4rhhhzv] {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    padding-top: 1rem;
}

.nav-user-info[b-onv4rhhhzv] {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.nav-user-display[b-onv4rhhhzv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-profile-image[b-onv4rhhhzv] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.nav-profile-placeholder[b-onv4rhhhzv] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    color: white;
}

.nav-user-details[b-onv4rhhhzv] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.nav-user-name[b-onv4rhhhzv] {
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-user-email[b-onv4rhhhzv] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Logout button styling */
.logout-button[b-onv4rhhhzv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.logout-text[b-onv4rhhhzv] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.logout-user-name[b-onv4rhhhzv] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-top: 0.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-user-info[b-onv4rhhhzv] {
        order: -1;
        margin-left: 0;
        margin-right: auto;
    }

    .user-name[b-onv4rhhhzv] {
        max-width: 100px;
        font-size: 0.8rem;
    }

    .navbar-profile-image[b-onv4rhhhzv],
    .navbar-profile-placeholder[b-onv4rhhhzv] {
        width: 28px;
        height: 28px;
    }

    .logout-user-name[b-onv4rhhhzv] {
        font-size: 0.7rem;
    }

    .nav-user-name[b-onv4rhhhzv] {
        font-size: 0.8rem;
    }

    .nav-user-email[b-onv4rhhhzv] {
        font-size: 0.7rem;
    }

    .nav-profile-image[b-onv4rhhhzv],
    .nav-profile-placeholder[b-onv4rhhhzv] {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .user-name[b-onv4rhhhzv] {
        display: none;
    }

    .logout-user-name[b-onv4rhhhzv] {
        display: none;
    }

    .nav-user-email[b-onv4rhhhzv] {
        display: none;
    }
}

/* Additional styling for better appearance */
.logout-button:hover .logout-user-name[b-onv4rhhhzv] {
    color: rgba(255, 255, 255, 0.9);
}

.nav-user-info:hover[b-onv4rhhhzv] {
    background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 641px) {
    .navbar-toggler[b-onv4rhhhzv] {
        display: none;
    }

    .nav-scrollable[b-onv4rhhhzv] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/YumBlazor/Components/Pages/Casecontrol_pages/CaseControlListPage.razor.rz.scp.css */
/* Page Header */
.page-header[b-lagbwcpgm9] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Cards */
.card[b-lagbwcpgm9] {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header[b-lagbwcpgm9] {
    border-radius: 10px 10px 0 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Table Styling */
.table[b-lagbwcpgm9] {
    margin-bottom: 0;
}

.table th[b-lagbwcpgm9] {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem;
}

.table td[b-lagbwcpgm9] {
    padding: 1rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover[b-lagbwcpgm9] {
    background-color: rgba(0, 123, 255, 0.05);
}

.table-primary[b-lagbwcpgm9] {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

/* Status Badges */
.badge[b-lagbwcpgm9] {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* Form Styling */
.form-label[b-lagbwcpgm9] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control[b-lagbwcpgm9], .form-select[b-lagbwcpgm9] {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
}

.form-control:focus[b-lagbwcpgm9], .form-select:focus[b-lagbwcpgm9] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Buttons */
.btn[b-lagbwcpgm9] {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover[b-lagbwcpgm9] {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-lg[b-lagbwcpgm9] {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-group .btn[b-lagbwcpgm9] {
    padding: 0.375rem 0.75rem;
}

/* Loading and Empty States */
.spinner-border[b-lagbwcpgm9] {
    color: #667eea;
}

.empty-state[b-lagbwcpgm9] {
    padding: 3rem 1rem;
}

.empty-state .display-1[b-lagbwcpgm9] {
    font-size: 4rem;
    opacity: 0.3;
}

/* Modal Overlay */
.modal.show[b-lagbwcpgm9] {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content[b-lagbwcpgm9] {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header[b-lagbwcpgm9] {
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #dee2e6;
}

/* Alert Styling */
.alert[b-lagbwcpgm9] {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success[b-lagbwcpgm9] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger[b-lagbwcpgm9] {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header[b-lagbwcpgm9] {
        padding: 1rem;
        text-align: center;
    }
    
    .page-header .d-flex[b-lagbwcpgm9] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-group[b-lagbwcpgm9] {
        flex-direction: column;
    }
    
    .btn-group .btn[b-lagbwcpgm9] {
        margin-bottom: 0.25rem;
    }
    
    .table-responsive[b-lagbwcpgm9] {
        font-size: 0.875rem;
    }
}

/* Animation */
@keyframes fadeIn-b-lagbwcpgm9 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card[b-lagbwcpgm9] {
    animation: fadeIn-b-lagbwcpgm9 0.3s ease;
}
/* _content/YumBlazor/Components/Pages/Dashboard1.razor.rz.scp.css */
/* Loading overlay */
.loading-overlay[b-bs6hyc9dd3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-bs6hyc9dd3] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Dashboard Container */
.dashboard-container[b-bs6hyc9dd3] {
    background: var(--bs-gray-50);
    min-height: 100vh;
    padding: 1rem 0;
}

/* Dashboard Header */
.dashboard-header[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-icon[b-bs6hyc9dd3] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.dashboard-title[b-bs6hyc9dd3] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.dashboard-subtitle[b-bs6hyc9dd3] {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

.dashboard-stats[b-bs6hyc9dd3] {
    text-align: right;
}

.stat-label[b-bs6hyc9dd3] {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-value[b-bs6hyc9dd3] {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Metric Cards */
.metric-card[b-bs6hyc9dd3] {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--bs-border-color);
}

.metric-card:hover[b-bs6hyc9dd3] {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.metric-icon[b-bs6hyc9dd3] {
    width: 50px;
    height: 50px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.metric-icon.total-products[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.metric-icon.total-clicks[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.metric-icon.avg-clicks[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.metric-icon.top-product[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.metric-value[b-bs6hyc9dd3] {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    margin: 0;
    line-height: 1;
}

.metric-label[b-bs6hyc9dd3] {
    font-size: 0.9rem;
    color: var(--bs-gray-600);
    margin: 0.5rem 0 0 0;
    font-weight: 500;
}

/* Analytics Cards */
.analytics-card[b-bs6hyc9dd3] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bs-border-color);
    overflow: hidden;
}

.analytics-card .card-header[b-bs6hyc9dd3] {
    background: var(--bs-gray-50);
    border-bottom: 1px solid var(--bs-border-color);
    padding: 1.5rem;
}

.analytics-card .card-title[b-bs6hyc9dd3] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-gray-800);
    margin: 0;
    display: flex;
    align-items: center;
}

.analytics-card .card-body[b-bs6hyc9dd3] {
    padding: 1.5rem;
}

/* View Toggle */
.view-toggle[b-bs6hyc9dd3] {
    display: flex;
    gap: 0.25rem;
}

.view-toggle .btn[b-bs6hyc9dd3] {
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
}

/* Chart Container */
.chart-container[b-bs6hyc9dd3] {
    max-height: 500px;
    overflow-y: auto;
}

.chart-bar-item[b-bs6hyc9dd3] {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bs-gray-50);
    border-radius: 0.75rem;
    border: 1px solid var(--bs-border-color);
}

.bar-info[b-bs6hyc9dd3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.product-name[b-bs6hyc9dd3] {
    font-weight: 600;
    color: var(--bs-gray-800);
    flex: 1;
}

.click-count[b-bs6hyc9dd3] {
    font-size: 0.9rem;
    color: var(--bs-gray-600);
    font-weight: 500;
}

.bar-container[b-bs6hyc9dd3] {
    height: 8px;
    background: var(--bs-gray-200);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill[b-bs6hyc9dd3] {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 0.8s ease;
}

/* Table Styling */
.analytics-table[b-bs6hyc9dd3] {
    margin: 0;
}

.analytics-table thead th[b-bs6hyc9dd3] {
    background: var(--bs-gray-100);
    border-bottom: 2px solid var(--bs-border-color);
    font-weight: 600;
    color: var(--bs-gray-700);
    padding: 1rem;
}

.analytics-table tbody td[b-bs6hyc9dd3] {
    padding: 1rem;
    vertical-align: middle;
}

.analytics-table tbody tr:hover[b-bs6hyc9dd3] {
    background: rgba(102, 126, 234, 0.05);
}

/* Rank Badges */
.rank-badge[b-bs6hyc9dd3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.85rem;
    color: white;
}

.rank-badge.rank-first[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
}

.rank-badge.rank-second[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #333;
}

.rank-badge.rank-third[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #cd7f32 0%, #daa520 100%);
}

.rank-badge.rank-other[b-bs6hyc9dd3] {
    background: var(--bs-gray-500);
}

/* Click Count Badge */
.click-count-badge[b-bs6hyc9dd3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Performance Bar */
.performance-bar[b-bs6hyc9dd3] {
    width: 100px;
    height: 6px;
    background: var(--bs-gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.performance-fill[b-bs6hyc9dd3] {
    height: 100%;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Trend Indicators */
.trend-indicator[b-bs6hyc9dd3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.9rem;
}

.trend-indicator.trend-up[b-bs6hyc9dd3] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.trend-indicator.trend-down[b-bs6hyc9dd3] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.trend-indicator.trend-stable[b-bs6hyc9dd3] {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Performance Summary */
.performance-summary[b-bs6hyc9dd3] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.performance-category[b-bs6hyc9dd3] {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--bs-border-color);
}

.performance-category.high-performers[b-bs6hyc9dd3] {
    background: rgba(40, 167, 69, 0.05);
    border-color: rgba(40, 167, 69, 0.2);
}

.performance-category.average-performers[b-bs6hyc9dd3] {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.performance-category.low-performers[b-bs6hyc9dd3] {
    background: rgba(220, 53, 69, 0.05);
    border-color: rgba(220, 53, 69, 0.2);
}

.category-header[b-bs6hyc9dd3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-title[b-bs6hyc9dd3] {
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

.category-count[b-bs6hyc9dd3] {
    background: var(--bs-gray-200);
    color: var(--bs-gray-700);
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.category-list[b-bs6hyc9dd3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.performance-item[b-bs6hyc9dd3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.performance-item:last-child[b-bs6hyc9dd3] {
    border-bottom: none;
}

.item-name[b-bs6hyc9dd3] {
    font-size: 0.85rem;
    color: var(--bs-gray-700);
    flex: 1;
    margin-right: 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-value[b-bs6hyc9dd3] {
    font-weight: 600;
    color: var(--bs-gray-800);
    font-size: 0.85rem;
}

/* Performance Level Badges */
.performance-level[b-bs6hyc9dd3] {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.performance-level.performance-high[b-bs6hyc9dd3] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.performance-level.performance-average[b-bs6hyc9dd3] {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.performance-level.performance-low[b-bs6hyc9dd3] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Search Box */
.search-box[b-bs6hyc9dd3] {
    position: relative;
    width: 250px;
}

.search-box input[b-bs6hyc9dd3] {
    padding-right: 2.5rem;
    border-radius: 0.5rem;
}

.search-icon[b-bs6hyc9dd3] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bs-gray-500);
}

/* Product Info */
.product-info strong[b-bs6hyc9dd3] {
    color: var(--bs-gray-800);
}

.product-id[b-bs6hyc9dd3] {
    font-family: monospace;
    color: var(--bs-gray-600);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .dashboard-header[b-bs6hyc9dd3] {
        padding: 1.5rem;
        text-align: center;
    }
    
    .dashboard-title[b-bs6hyc9dd3] {
        font-size: 1.5rem;
    }
    
    .dashboard-stats[b-bs6hyc9dd3] {
        text-align: center;
        margin-top: 1rem;
    }
    
    .search-box[b-bs6hyc9dd3] {
        width: 100%;
        margin-top: 1rem;
    }
    
    .view-toggle[b-bs6hyc9dd3] {
        margin-top: 1rem;
    }
    
    .metric-card[b-bs6hyc9dd3] {
        text-align: center;
    }
    
    .performance-summary[b-bs6hyc9dd3] {
        gap: 1rem;
    }
    
    .chart-container[b-bs6hyc9dd3] {
        max-height: 400px;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-bs6hyc9dd3 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-card[b-bs6hyc9dd3], .analytics-card[b-bs6hyc9dd3] {
    animation: fadeInUp-b-bs6hyc9dd3 0.6s ease forwards;
}

.metric-card:nth-child(2)[b-bs6hyc9dd3] {
    animation-delay: 0.1s;
}

.metric-card:nth-child(3)[b-bs6hyc9dd3] {
    animation-delay: 0.2s;
}

.metric-card:nth-child(4)[b-bs6hyc9dd3] {
    animation-delay: 0.3s;
}
/* _content/YumBlazor/Components/Pages/DoctorAppointment_Pages/DoctorAppointmentEdit.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-yj8pzm6plm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-yj8pzm6plm] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
.header-icon[b-yj8pzm6plm] {
    font-size: 1.5rem;
}

/* Form Sections */
.form-section[b-yj8pzm6plm] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.section-title[b-yj8pzm6plm] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Form Controls */
.form-control[b-yj8pzm6plm],
.form-select[b-yj8pzm6plm] {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control:focus[b-yj8pzm6plm],
.form-select:focus[b-yj8pzm6plm] {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Form Actions */
.form-actions[b-yj8pzm6plm] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 3px solid #007bff;
    margin-top: 2rem;
}

/* Button Improvements */
.btn[b-yj8pzm6plm] {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover[b-yj8pzm6plm] {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-success[b-yj8pzm6plm] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.btn-warning[b-yj8pzm6plm] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border: none;
    color: #212529;
}

/* Alert Styling */
.alert[b-yj8pzm6plm] {
    border-radius: 10px;
    border: none;
    animation: slideIn-b-yj8pzm6plm 0.3s ease-out;
}

@keyframes slideIn-b-yj8pzm6plm {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-section[b-yj8pzm6plm] {
        padding: 1rem;
    }
    
    .form-actions[b-yj8pzm6plm] {
        padding: 1rem;
    }
    
    .form-actions .d-flex[b-yj8pzm6plm] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-actions .btn[b-yj8pzm6plm] {
        width: 100%;
    }
}
/* _content/YumBlazor/Components/Pages/DoctorAppointment_Pages/DoctorAppointmentList.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-s4ussk793c] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-s4ussk793c] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Page Header */
.page-header[b-s4ussk793c] {
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

/* Table Styling */
.table th[b-s4ussk793c] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table tbody tr[b-s4ussk793c] {
    transition: all 0.2s ease;
}

.table tbody tr:hover[b-s4ussk793c] {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Modal Backdrop */
.modal.fade.show.d-block[b-s4ussk793c] {
    display: block !important;
}

/* Pagination */
.pagination[b-s4ussk793c] {
    margin-bottom: 0;
}

.page-link[b-s4ussk793c] {
    border-radius: 0.25rem;
    margin: 0 0.125rem;
}

/* Badges */
.badge[b-s4ussk793c] {
    padding: 0.35em 0.65em;
    font-size: 0.75rem;
}

/* Button Groups */
.btn-group .btn[b-s4ussk793c] {
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

.btn-group .btn:last-child[b-s4ussk793c] {
    margin-right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .table-responsive[b-s4ussk793c] {
        font-size: 0.875rem;
    }
    
    .btn-group[b-s4ussk793c] {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
}
/* _content/YumBlazor/Components/Pages/Employee1/StaffMakeReport1.razor.rz.scp.css */
.loading-overlay[b-aa0ptqe2j5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-aa0ptqe2j5] {
    text-align: center;
}

.header-icon[b-aa0ptqe2j5] {
    font-size: 1.5rem;
}

.action-bar[b-aa0ptqe2j5] {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
}

.search-box[b-aa0ptqe2j5] {
    min-width: 300px;
}

    .search-box .input-group-text[b-aa0ptqe2j5] {
        background-color: #fff;
        border-right: none;
    }

    .search-box .form-control[b-aa0ptqe2j5] {
        border-left: none;
    }

        .search-box .form-control:focus[b-aa0ptqe2j5] {
            border-color: #86b7fe;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

.date-filter[b-aa0ptqe2j5] {
    min-width: 150px;
}

.avatar-sm[b-aa0ptqe2j5] {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.empty-state[b-aa0ptqe2j5] {
    padding: 3rem 1rem;
}

.empty-icon[b-aa0ptqe2j5] {
    font-size: 4rem;
}

.table th[b-aa0ptqe2j5] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table tbody tr:hover[b-aa0ptqe2j5] {
    background-color: #f8f9fa;
}

.btn-group .btn[b-aa0ptqe2j5] {
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

    .btn-group .btn:last-child[b-aa0ptqe2j5] {
        margin-right: 0;
    }

.custom-date-range[b-aa0ptqe2j5] {
    background-color: #e3f2fd;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #bbdefb;
}

.modal-backdrop.show[b-aa0ptqe2j5] {
    opacity: 0.5;
}

.badge[b-aa0ptqe2j5] {
    font-size: 0.75rem;
}

.create-actions .dropdown-toggle[b-aa0ptqe2j5]::after {
    margin-left: 0.5rem;
}

/* Case Selection Modal Styles */
.case-selection-section[b-aa0ptqe2j5] {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

    .case-selection-section .alert-info[b-aa0ptqe2j5] {
        background-color: #d1ecf1;
        border-color: #bee5eb;
        color: #0c5460;
        border-radius: 0.375rem;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
    }

/* Case Pickup Component in Modal */
.modal-body .case-pickup-container[b-aa0ptqe2j5] {
    max-height: 500px;
    overflow-y: auto;
}

/* Selected Case Alert in Modal */
.modal-body .alert-success[b-aa0ptqe2j5] {
    background-color: #d1e7dd;
    border-color: #badbcc;
    color: #0f5132;
    border-radius: 0.375rem;
}

/* Input Group Styling */
.input-group .btn-outline-secondary[b-aa0ptqe2j5] {
    border-color: #6c757d;
    color: #6c757d;
}

    .input-group .btn-outline-secondary:hover[b-aa0ptqe2j5] {
        background-color: #6c757d;
        border-color: #6c757d;
        color: #fff;
    }

/* Delete Confirmation Modal Styles */
#deleteConfirmModal .modal-content[b-aa0ptqe2j5] {
    border-radius: 1rem;
    overflow: hidden;
}

#deleteConfirmModal .modal-header[b-aa0ptqe2j5] {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    border: none;
    padding: 1.5rem;
}

#deleteConfirmModal .warning-icon[b-aa0ptqe2j5] {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#deleteConfirmModal .delete-icon[b-aa0ptqe2j5] {
    background-color: #fff2f2;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #f8d7da;
}

#deleteConfirmModal .report-details[b-aa0ptqe2j5] {
    border: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

#deleteConfirmModal .modal-footer[b-aa0ptqe2j5] {
    padding: 1.5rem;
    background-color: #f8f9fa;
}

#deleteConfirmModal .btn-danger[b-aa0ptqe2j5] {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    #deleteConfirmModal .btn-danger:hover[b-aa0ptqe2j5] {
        background: linear-gradient(135deg, #c82333 0%, #a02129 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
    }

#deleteConfirmModal .btn-outline-secondary[b-aa0ptqe2j5] {
    border: 2px solid #6c757d;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    #deleteConfirmModal .btn-outline-secondary:hover[b-aa0ptqe2j5] {
        background-color: #6c757d;
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
    }

#deleteConfirmModal .alert-warning[b-aa0ptqe2j5] {
    border: none;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 0.75rem;
    padding: 1rem;
}

/* Animation for modal */
#deleteConfirmModal.show .modal-dialog[b-aa0ptqe2j5] {
    animation: modalSlideIn-b-aa0ptqe2j5 0.3s ease-out;
}

@keyframes modalSlideIn-b-aa0ptqe2j5 {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Loading state for delete button */
#deleteConfirmModal .btn-danger:disabled[b-aa0ptqe2j5] {
    background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
    cursor: not-allowed;
}

#deleteConfirmModal .spinner-border-sm[b-aa0ptqe2j5] {
    width: 1rem;
    height: 1rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .action-bar[b-aa0ptqe2j5] {
        flex-direction: column;
        gap: 1rem;
    }

        .action-bar .d-flex[b-aa0ptqe2j5] {
            flex-direction: column;
            align-items: stretch !important;
        }

    .search-box[b-aa0ptqe2j5] {
        min-width: auto;
        width: 100%;
    }

    .date-filter[b-aa0ptqe2j5] {
        min-width: auto;
    }

    .btn-group[b-aa0ptqe2j5] {
        display: flex;
        justify-content: center;
    }

    .table-responsive[b-aa0ptqe2j5] {
        font-size: 0.875rem;
    }

    #deleteConfirmModal .modal-header[b-aa0ptqe2j5] {
        padding: 1rem;
    }

    #deleteConfirmModal .modal-body[b-aa0ptqe2j5] {
        padding: 1rem;
    }

    #deleteConfirmModal .modal-footer[b-aa0ptqe2j5] {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }

        #deleteConfirmModal .modal-footer .btn[b-aa0ptqe2j5] {
            width: 100%;
        }

    /* Case selection modal responsive */
    .case-selection-section[b-aa0ptqe2j5] {
        padding: 0.75rem;
    }

    .modal-body .case-pickup-container[b-aa0ptqe2j5] {
        max-height: 400px;
    }
}
/* _content/YumBlazor/Components/Pages/Home.razor.rz.scp.css */
/* Loading overlay */
.loading-overlay[b-3yq2giwlli] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-3yq2giwlli] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Hero Section */
.hero-section[b-3yq2giwlli] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 20vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section[b-3yq2giwlli]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: 100% 100%;
}

.hero-overlay[b-3yq2giwlli] {
    position: relative;
    z-index: 2;
}

.hero-content[b-3yq2giwlli] {
    padding: 2rem 0;
}

.hero-title[b-3yq2giwlli] {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle[b-3yq2giwlli] {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Search Container */
.search-container[b-3yq2giwlli] {
    max-width: 600px;
    margin: 0 auto;
}

.search-box[b-3yq2giwlli] {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box:focus-within[b-3yq2giwlli] {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-icon[b-3yq2giwlli] {
    color: var(--bs-gray-500);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.search-input[b-3yq2giwlli] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    padding: 1rem 0;
    background: transparent;
}

.search-input[b-3yq2giwlli]::placeholder {
    color: var(--bs-gray-400);
}

.clear-search[b-3yq2giwlli] {
    background: none;
    border: none;
    color: var(--bs-gray-400);
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.clear-search:hover[b-3yq2giwlli] {
    color: var(--bs-gray-600);
    background: var(--bs-gray-100);
}

/* Main Content */
.main-content[b-3yq2giwlli] {
    padding: 3rem 0;
    background: var(--bs-gray-50);
}

/* Category Section */
.category-section[b-3yq2giwlli] {
    margin-bottom: 3rem;
}

.category-nav[b-3yq2giwlli] {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav[b-3yq2giwlli]::-webkit-scrollbar {
    display: none;
}

.category-item[b-3yq2giwlli] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-item:hover[b-3yq2giwlli] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-item.active[b-3yq2giwlli] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.category-icon[b-3yq2giwlli] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-item span[b-3yq2giwlli] {
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Products Section */
.products-section[b-3yq2giwlli] {
    margin-bottom: 3rem;
}

.products-header[b-3yq2giwlli] {
    margin-bottom: 2rem;
    text-align: center;
}

.products-title[b-3yq2giwlli] {
    font-size: 2rem;
    font-weight: 600;
    color: var(--bs-gray-800);
    margin-bottom: 0.5rem;
}

.products-count[b-3yq2giwlli] {
    font-size: 1rem;
    color: var(--bs-gray-500);
    font-weight: 400;
}

.search-results[b-3yq2giwlli] {
    color: var(--bs-gray-600);
    font-style: italic;
    margin: 0;
}

/* Product Cards */
.product-card[b-3yq2giwlli] {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--bs-border-color);
    height: 100%;
    position: relative;
}

.product-card:hover[b-3yq2giwlli] {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card.pinned[b-3yq2giwlli] {
    border: 2px solid #ffd700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
}

.pin-badge[b-3yq2giwlli] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-image-container[b-3yq2giwlli] {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.product-image-container:hover[b-3yq2giwlli] {
    cursor: pointer; /* Changes the cursor to a hand pointer */
    /* You can use other cursor values like:
           cursor: crosshair;
           cursor: help;
           cursor: move;
           cursor: text;
           cursor: wait;
           cursor: grab;
           cursor: url('path/to/your/custom-cursor.cur'), auto;
        */
}

.product-image[b-3yq2giwlli] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image[b-3yq2giwlli] {
    transform: scale(1.05);
}

.placeholder-image[b-3yq2giwlli] {
    width: 100%;
    height: 100%;
    background: var(--bs-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-400);
    font-size: 3rem;
}

.special-tag[b-3yq2giwlli] {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.product-content[b-3yq2giwlli] {
    padding: 1.5rem;
}

.product-header[b-3yq2giwlli] {
    margin-bottom: 1.5rem;
}

.product-title[b-3yq2giwlli] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--bs-gray-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-price[b-3yq2giwlli] {
    margin-bottom: 1rem;
}

.price-range[b-3yq2giwlli] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
}

.price-separator[b-3yq2giwlli] {
    margin: 0 0.25rem;
    color: var(--bs-gray-400);
}

.product-actions[b-3yq2giwlli] {
    display: grid;
    width: 300px;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    
}

.btn-detail[b-3yq2giwlli], .btn-cart[b-3yq2giwlli] {
    border-radius: 0.75rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-detail:hover[b-3yq2giwlli] {
    transform: translateY(-1px);
}

.btn-cart[b-3yq2giwlli] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.btn-cart:hover[b-3yq2giwlli] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Empty State */
.empty-state[b-3yq2giwlli] {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 1.5rem;
    margin: 2rem 0;
}

.empty-icon[b-3yq2giwlli] {
    width: 80px;
    height: 80px;
    background: var(--bs-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bs-gray-400);
    margin: 0 auto 1.5rem;
}

.empty-title[b-3yq2giwlli] {
    color: var(--bs-gray-700);
    margin-bottom: 1rem;
}

.empty-subtitle[b-3yq2giwlli] {
    color: var(--bs-gray-500);
    margin-bottom: 1.5rem;
}

/* Media Section */
.media-section[b-3yq2giwlli] {
    background: white;
    padding: 4rem 0;
}

.media-header[b-3yq2giwlli] {
    margin-bottom: 3rem;
}

.media-title[b-3yq2giwlli] {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--bs-gray-800);
    margin-bottom: 1rem;
}

.media-subtitle[b-3yq2giwlli] {
    font-size: 1.1rem;
    color: var(--bs-gray-600);
    margin: 0;
}

/* Section Headers for YouTube and TikTok */
.section-header[b-3yq2giwlli] {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title[b-3yq2giwlli] {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--bs-gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.youtube-section .section-title[b-3yq2giwlli] {
    color: #ff0000;
}

.tiktok-section .section-title[b-3yq2giwlli] {
    color: #000000;
}

/* Media Cards */
.media-card[b-3yq2giwlli] {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.media-card:hover[b-3yq2giwlli] {
    transform: translateY(-4px);
}

.media-header-card[b-3yq2giwlli] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.youtube-card .media-header-card[b-3yq2giwlli] {
    background: #ff0000;
    color: white;
}

.tiktok-card .media-header-card[b-3yq2giwlli] {
    background: #000000;
    color: white;
}

/* YouTube iframe container */
.iframe-container[b-3yq2giwlli] {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.iframe-container iframe[b-3yq2giwlli] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* TikTok specific container - MAXIMUM WIDTH EXPANSION */
.tiktok-container[b-3yq2giwlli] {
    position: relative;
    width: 100%;
    height: 600px; /* Increased height for better viewing */
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0.25rem; /* Minimal padding to maximize width */
}

.tiktok-container iframe[b-3yq2giwlli] {
    width: 100%; /* Use absolute full width */
    height: 100%;
    border: none;
    min-width: unset; /* Remove minimum width constraints */
    max-width: none; /* Remove all max-width constraints */
    border-radius: 0.5rem; /* Subtle rounding */
}

/* Override Bootstrap column widths for TikTok to be wider */
.tiktok-section .col-lg-3[b-3yq2giwlli] {
    flex: 0 0 auto;
    width: 33.333333%; /* Wider than default 25% */
}

.tiktok-section .col-md-4[b-3yq2giwlli] {
    flex: 0 0 auto;
    width: 50%; /* Two columns on medium screens */
}

.tiktok-section .col-sm-6[b-3yq2giwlli] {
    flex: 0 0 auto;
    width: 100%; /* Full width on small screens */
}

/* Responsive Design with expanded TikTok widths */
@media (min-width: 1200px) {
    .tiktok-section .col-lg-3[b-3yq2giwlli] {
        width: 30%; /* Even wider on large screens */
        max-width: 450px;
    }
    
    .tiktok-container[b-3yq2giwlli] {
        height: 700px; /* Taller on large screens */
        padding: 0.5rem;
    }
}

@media (min-width: 1400px) {
    .tiktok-section .col-lg-3[b-3yq2giwlli] {
        width: 28%; /* Maximum width on extra large screens */
        max-width: 500px;
    }
    
    .tiktok-container[b-3yq2giwlli] {
        height: 750px;
        padding: 0.75rem;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .tiktok-section .col-lg-3[b-3yq2giwlli] {
        width: 32%; /* Three wider columns on large screens */
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .tiktok-section .col-md-4[b-3yq2giwlli] {
        width: 48%; /* Two wider columns on medium screens */
    }
    
    .tiktok-container[b-3yq2giwlli] {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .hero-title[b-3yq2giwlli] {
        font-size: 2rem;
    }
    
    .hero-subtitle[b-3yq2giwlli] {
        font-size: 1rem;
    }
    
    .search-box[b-3yq2giwlli] {
        padding: 0.4rem 1rem;
    }
    
    .search-input[b-3yq2giwlli] {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    .category-nav[b-3yq2giwlli] {
        padding: 0.5rem 0;
    }
    
    .category-item[b-3yq2giwlli] {
        min-width: 80px;
        padding: 0.75rem 1rem;
    }
    
    .category-icon[b-3yq2giwlli] {
        font-size: 1.2rem;
    }
    
    .category-item span[b-3yq2giwlli] {
        font-size: 0.8rem;
    }
    
    .products-title[b-3yq2giwlli] {
        font-size: 1.5rem;
    }
    
    .product-actions[b-3yq2giwlli] {
        grid-template-columns: 1fr;
    }
    
    .media-title[b-3yq2giwlli] {
        font-size: 2rem;
    }
    
    .section-title[b-3yq2giwlli] {
        font-size: 1.5rem;
    }
    
    .iframe-container[b-3yq2giwlli] {
        height: 250px;
    }
    
    .tiktok-container[b-3yq2giwlli] {
        height: 500px; /* Still large on mobile */
        padding: 0.125rem;
    }
    
    .tiktok-section .col-sm-6[b-3yq2giwlli] {
        width: 100%; /* Full width on mobile for maximum viewing */
    }
}

@media (max-width: 576px) {
    .main-content[b-3yq2giwlli] {
        padding: 2rem 0;
    }
    
    .hero-content[b-3yq2giwlli] {
        padding: 1.5rem 0;
    }
    
    .product-content[b-3yq2giwlli] {
        padding: 1rem;
    }
    
    .media-section[b-3yq2giwlli] {
        padding: 3rem 0;
    }
    
    .tiktok-container[b-3yq2giwlli] {
        height: 450px;
        padding: 0.125rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-3yq2giwlli {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card[b-3yq2giwlli] {
    animation: fadeInUp-b-3yq2giwlli 0.6s ease forwards;
}

.product-card:nth-child(even)[b-3yq2giwlli] {
    animation-delay: 0.1s;
}

.product-card:nth-child(3n)[b-3yq2giwlli] {
    animation-delay: 0.2s;
}

.media-card[b-3yq2giwlli] {
    animation: fadeInUp-b-3yq2giwlli 0.6s ease forwards;
}

.youtube-section .media-card:nth-child(2)[b-3yq2giwlli] {
    animation-delay: 0.1s;
}

.tiktok-section .media-card:nth-child(2)[b-3yq2giwlli] {
    animation-delay: 0.1s;
}

.tiktok-section .media-card:nth-child(3)[b-3yq2giwlli] {
    animation-delay: 0.2s;
}

.tiktok-section .media-card:nth-child(4)[b-3yq2giwlli] {
    animation-delay: 0.3s;
}
/* _content/YumBlazor/Components/Pages/HomeSetting/HomeSettingPage.razor.rz.scp.css */
/* Main container and card styling */
.home-setting-card[b-gk5nl4gkzm] {
    border-radius: 1rem;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styling */
.home-setting-header[b-gk5nl4gkzm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.header-icon[b-gk5nl4gkzm] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Loading overlay */
.loading-overlay[b-gk5nl4gkzm] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-gk5nl4gkzm] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Form container */
.form-container[b-gk5nl4gkzm] {
    padding: 2rem;
}

/* Form sections */
.form-section[b-gk5nl4gkzm] {
    background: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--bs-border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.form-section:hover[b-gk5nl4gkzm] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-header[b-gk5nl4gkzm] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.section-title[b-gk5nl4gkzm] {
    margin: 0;
    color: var(--bs-gray-700);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.section-content[b-gk5nl4gkzm] {
    padding: 1.5rem;
}

/* Form controls */
.form-control[b-gk5nl4gkzm], .form-select[b-gk5nl4gkzm] {
    border-radius: 0.75rem;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus[b-gk5nl4gkzm], .form-select:focus[b-gk5nl4gkzm] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control-lg[b-gk5nl4gkzm] {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
}

.form-floating > label[b-gk5nl4gkzm] {
    font-weight: 500;
    color: var(--bs-gray-600);
}

.form-floating > .form-control:focus ~ label[b-gk5nl4gkzm],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-gk5nl4gkzm] {
    color: #667eea;
    font-weight: 600;
}

/* Preview containers */
.preview-container[b-gk5nl4gkzm] {
    border: 2px solid var(--bs-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--bs-gray-50);
    transition: border-color 0.3s ease;
}

.preview-container:hover[b-gk5nl4gkzm] {
    border-color: #667eea;
}

.preview-iframe[b-gk5nl4gkzm] {
    width: 100%;
    height: 200px;
    border: none;
    display: block;
}

/* TikTok specific styling - expanded height for better aspect ratio */
.tiktok-iframe[b-gk5nl4gkzm] {
    height: 500px; /* Increased from 300px to 500px for better TikTok viewing */
    min-height: 500px;
}

/* Section icons */
.section-title i[b-gk5nl4gkzm] {
    color: #667eea;
    font-size: 1.2rem;
}

/* YouTube section styling */
.form-section:has(.section-title .bi-youtube) .section-header[b-gk5nl4gkzm] {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
}

.form-section:has(.section-title .bi-youtube) .section-title i[b-gk5nl4gkzm] {
    color: white;
}

/* TikTok section styling */
.form-section:has(.section-title .bi-tiktok) .section-header[b-gk5nl4gkzm] {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.form-section:has(.section-title .bi-tiktok) .section-title i[b-gk5nl4gkzm] {
    color: white;
}

/* Validation messages */
.text-danger.small[b-gk5nl4gkzm] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.alert[b-gk5nl4gkzm] {
    border-radius: 0.75rem;
    border: none;
    font-weight: 500;
}

.alert-danger[b-gk5nl4gkzm] {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* Form actions */
.form-actions[b-gk5nl4gkzm] {
    background: var(--bs-gray-50);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--bs-border-color);
    margin: 0 -2rem -2rem -2rem;
}

/* Button styling */
.btn[b-gk5nl4gkzm] {
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-lg[b-gk5nl4gkzm] {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary[b-gk5nl4gkzm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover:not(:disabled)[b-gk5nl4gkzm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline-secondary[b-gk5nl4gkzm] {
    border: 2px solid var(--bs-gray-300);
    color: var(--bs-gray-600);
}

.btn-outline-secondary:hover[b-gk5nl4gkzm] {
    background: var(--bs-gray-600);
    border-color: var(--bs-gray-600);
    transform: translateY(-1px);
}

/* Loading state for buttons */
.btn:disabled[b-gk5nl4gkzm] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .home-setting-header[b-gk5nl4gkzm] {
        padding: 1rem;
    }
    
    .header-icon[b-gk5nl4gkzm] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .form-container[b-gk5nl4gkzm] {
        padding: 1rem;
    }
    
    .section-content[b-gk5nl4gkzm] {
        padding: 1rem;
    }
    
    .form-actions[b-gk5nl4gkzm] {
        padding: 1rem;
        margin: 0 -1rem -1rem -1rem;
    }
    
    .form-actions .d-flex[b-gk5nl4gkzm] {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .form-actions .btn[b-gk5nl4gkzm] {
        width: 100%;
    }
    
    .preview-iframe[b-gk5nl4gkzm] {
        height: 150px;
    }
    
    /* TikTok mobile responsiveness - still larger than regular iframes */
    .tiktok-iframe[b-gk5nl4gkzm] {
        height: 350px; /* Reduced for mobile but still larger than YouTube */
        min-height: 350px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .tiktok-iframe[b-gk5nl4gkzm] {
        height: 300px; /* Further reduced for very small screens */
        min-height: 300px;
    }
}

/* Large screens - even taller TikTok previews */
@media (min-width: 1200px) {
    .tiktok-iframe[b-gk5nl4gkzm] {
        height: 600px; /* Even taller on large screens */
        min-height: 600px;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-gk5nl4gkzm {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-setting-card[b-gk5nl4gkzm] {
    animation: fadeInUp-b-gk5nl4gkzm 0.6s ease forwards;
}

.form-section[b-gk5nl4gkzm] {
    animation: fadeInUp-b-gk5nl4gkzm 0.6s ease forwards;
}

.form-section:nth-child(2)[b-gk5nl4gkzm] {
    animation-delay: 0.1s;
}

.form-section:nth-child(3)[b-gk5nl4gkzm] {
    animation-delay: 0.2s;
}

.form-section:nth-child(4)[b-gk5nl4gkzm] {
    animation-delay: 0.3s;
}

/* Focus states for accessibility */
.form-control:focus[b-gk5nl4gkzm] {
    outline: none;
}

.btn:focus[b-gk5nl4gkzm] {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.5);
}

/* Enhanced floating labels */
.form-floating > .form-control:focus ~ label[b-gk5nl4gkzm],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-gk5nl4gkzm] {
    opacity: 0.85;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Section spacing improvements */
.section-header small[b-gk5nl4gkzm] {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* URL input styling */
input[type="url"][b-gk5nl4gkzm] {
    font-family: monospace;
}

/* Preview loading state */
.preview-container.loading[b-gk5nl4gkzm] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading-b-gk5nl4gkzm 1.5s infinite;
}

@keyframes loading-b-gk5nl4gkzm {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* TikTok preview container specific styling */
.preview-container:has(.tiktok-iframe)[b-gk5nl4gkzm] {
    background: #000; /* Black background to match TikTok's style */
    border-color: #333;
}

.preview-container:has(.tiktok-iframe):hover[b-gk5nl4gkzm] {
    border-color: #000;
}

/* Ensure TikTok videos maintain their aspect ratio */
.tiktok-iframe[b-gk5nl4gkzm] {
    aspect-ratio: 9/16; /* TikTok's vertical aspect ratio */
    width: 100%;
    max-width: 315px; /* TikTok's optimal width */
    margin: 0 auto;
    display: block;
}

/* Center TikTok iframes in their containers */
.preview-container:has(.tiktok-iframe)[b-gk5nl4gkzm] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}
/* _content/YumBlazor/Components/Pages/Patien_Pages/PatientListPage.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-d4ez1no1qh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-d4ez1no1qh] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Main Card */
.patient-list-card[b-d4ez1no1qh] {
    border-radius: 20px;
    overflow: hidden;
    min-height: 80vh;
}

/* Header Styles */
.patient-header[b-d4ez1no1qh] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 2rem;
}

.header-icon[b-d4ez1no1qh] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

/* Filter Section */
.filters-section[b-d4ez1no1qh] {
    background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
}

.search-input[b-d4ez1no1qh] {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.search-input:focus[b-d4ez1no1qh] {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.filter-btn[b-d4ez1no1qh] {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover[b-d4ez1no1qh] {
    transform: translateY(-1px);
}

.add-patient-btn[b-d4ez1no1qh] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-patient-btn:hover[b-d4ez1no1qh] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Table Styles */
.patient-table[b-d4ez1no1qh] {
    font-size: 0.95rem;
}

.table-header[b-d4ez1no1qh] {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: 2px solid #cbd5e1;
}

.table-header th[b-d4ez1no1qh] {
    color: #475569;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.patient-row[b-d4ez1no1qh] {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
}

.patient-row:hover[b-d4ez1no1qh] {
    background-color: #f8fafc;
    transform: translateX(5px);
}

/* Patient Avatar */
.patient-avatar[b-d4ez1no1qh] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
}

.patient-avatar img[b-d4ez1no1qh] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder[b-d4ez1no1qh] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Patient Info */
.patient-name[b-d4ez1no1qh] {
    color: #1e293b;
    font-size: 1rem;
}

.contact-info[b-d4ez1no1qh] {
    font-size: 0.85rem;
}

.demographic-info[b-d4ez1no1qh] {
    font-size: 0.9rem;
}

/* Badges */
.badge[b-d4ez1no1qh] {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.bg-pink-subtle[b-d4ez1no1qh] {
    background-color: #fdf2f8;
}

.text-pink[b-d4ez1no1qh] {
    color: #ec4899;
}

.blood-group-badge[b-d4ez1no1qh] {
    font-weight: 600;
    color: #dc2626;
    font-size: 0.9rem;
}

/* Action Buttons */
.action-buttons[b-d4ez1no1qh] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.action-buttons .btn[b-d4ez1no1qh] {
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    min-width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-buttons .btn:hover[b-d4ez1no1qh] {
    transform: scale(1.05);
}

.btn-outline-info:hover[b-d4ez1no1qh] {
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.btn-outline-primary:hover[b-d4ez1no1qh] {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-danger:hover[b-d4ez1no1qh] {
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Empty State */
.empty-state[b-d4ez1no1qh] {
    padding: 4rem 2rem;
}

.empty-icon[b-d4ez1no1qh] {
    font-size: 4rem;
    opacity: 0.3;
    color: #64748b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .patient-header[b-d4ez1no1qh] {
        padding: 1rem;
    }
    
    .patient-header h3[b-d4ez1no1qh] {
        font-size: 1.5rem;
    }
    
    .filters-section[b-d4ez1no1qh] {
        padding: 1rem;
    }
    
    .patient-row[b-d4ez1no1qh] {
        font-size: 0.85rem;
    }
    
    .action-buttons[b-d4ez1no1qh] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .action-buttons .btn[b-d4ez1no1qh] {
        width: 100%;
        min-width: auto;
    }
}

/* Additional utility classes for better styling */
.text-truncate[b-d4ez1no1qh] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fw-semibold[b-d4ez1no1qh] {
    font-weight: 600;
}
/* _content/YumBlazor/Components/Pages/Patien_Pages/PatientListPage2.razor.rz.scp.css */
/* Page Header */
.page-header[b-qj7hb2s0t4] {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Card Styling */
.card[b-qj7hb2s0t4] {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header[b-qj7hb2s0t4] {
    border-radius: 10px 10px 0 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Quick Actions */
.btn-group .btn[b-qj7hb2s0t4] {
    border-radius: 8px 0 0 8px;
}

.btn-group .btn:last-child[b-qj7hb2s0t4] {
    border-radius: 0 8px 8px 0;
}

/* Table Styling */
.table[b-qj7hb2s0t4] {
    margin-bottom: 0;
}

.table th[b-qj7hb2s0t4] {
    background-color: #f8f9fa;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding: 1rem;
}

.table td[b-qj7hb2s0t4] {
    padding: 1rem;
    vertical-align: middle;
}

.table-hover tbody tr:hover[b-qj7hb2s0t4] {
    background-color: rgba(13, 110, 253, 0.05);
}

.table-primary[b-qj7hb2s0t4] {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

/* Patient Cards */
.card h-100[b-qj7hb2s0t4] {
    transition: all 0.2s ease;
}

.card h-100:hover[b-qj7hb2s0t4] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.border-primary[b-qj7hb2s0t4] {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Patient Avatar */
.patient-avatar img[b-qj7hb2s0t4] {
    border: 2px solid #e9ecef;
}

.avatar-placeholder[b-qj7hb2s0t4] {
    border: 2px solid #e9ecef;
}

/* Badges */
.badge[b-qj7hb2s0t4] {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* Status Colors */
.bg-primary-subtle[b-qj7hb2s0t4] {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-danger-subtle[b-qj7hb2s0t4] {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.bg-secondary-subtle[b-qj7hb2s0t4] {
    background-color: rgba(108, 117, 125, 0.1) !important;
}

.bg-muted-subtle[b-qj7hb2s0t4] {
    background-color: rgba(134, 142, 150, 0.1) !important;
}

.text-primary[b-qj7hb2s0t4] {
    color: #0d6efd !important;
}

.text-danger[b-qj7hb2s0t4] {
    color: #dc3545 !important;
}

/* Modal Styling */
.modal.show[b-qj7hb2s0t4] {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content[b-qj7hb2s0t4] {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header[b-qj7hb2s0t4] {
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #dee2e6;
}

/* Loading States */
.spinner-border[b-qj7hb2s0t4] {
    color: #0d6efd;
}

/* Pagination */
.pagination-sm .page-link[b-qj7hb2s0t4] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 6px;
    margin: 0 2px;
}

.pagination-sm .page-item.active .page-link[b-qj7hb2s0t4] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Empty State */
.display-1[b-qj7hb2s0t4] {
    font-size: 4rem;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header[b-qj7hb2s0t4] {
        padding: 1rem;
        text-align: center;
    }
    
    .page-header .d-flex[b-qj7hb2s0t4] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-group[b-qj7hb2s0t4] {
        flex-direction: column;
    }
    
    .btn-group .btn[b-qj7hb2s0t4] {
        border-radius: 8px !important;
        margin-bottom: 0.25rem;
    }
    
    .table-responsive[b-qj7hb2s0t4] {
        font-size: 0.875rem;
    }
    
    .card .d-flex.gap-1[b-qj7hb2s0t4] {
        flex-direction: column;
    }
    
    .card .d-flex.gap-1 .btn[b-qj7hb2s0t4] {
        margin-bottom: 0.25rem;
    }
}

/* Animation */
@keyframes fadeIn-b-qj7hb2s0t4 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card[b-qj7hb2s0t4] {
    animation: fadeIn-b-qj7hb2s0t4 0.3s ease;
}

/* Button Enhancements */
.btn[b-qj7hb2s0t4] {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn:hover[b-qj7hb2s0t4] {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-lg[b-qj7hb2s0t4] {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Alert Styling */
.alert[b-qj7hb2s0t4] {
    border-radius: 10px;
    border: none;
}

.alert-warning[b-qj7hb2s0t4] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
}
/* _content/YumBlazor/Components/Pages/Patien_Pages/PatientUpsetPage.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-kqczspaenk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-kqczspaenk] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Main Card */
.patient-form-card[b-kqczspaenk] {
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.patient-header[b-kqczspaenk] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    padding: 2rem;
}

.header-icon[b-kqczspaenk] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

/* Form Sections */
.form-section[b-kqczspaenk] {
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    padding: 1.5rem;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.form-section:hover[b-kqczspaenk] {
    border-color: #2563eb;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.section-header[b-kqczspaenk] {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
}

.section-title[b-kqczspaenk] {
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

/* Profile Picture Section */
.profile-picture-section[b-kqczspaenk] {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.current-picture[b-kqczspaenk] {
    flex-shrink: 0;
}

.profile-img[b-kqczspaenk], .profile-placeholder[b-kqczspaenk] {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e5e7eb;
}

.profile-placeholder[b-kqczspaenk] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.picture-controls[b-kqczspaenk] {
    flex: 1;
    min-width: 250px;
}

/* Form Controls */
.form-floating > .form-control[b-kqczspaenk],
.form-floating > .form-select[b-kqczspaenk] {
    border-radius: 10px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.form-floating > .form-control:focus[b-kqczspaenk],
.form-floating > .form-select:focus[b-kqczspaenk] {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-control[b-kqczspaenk], .form-select[b-kqczspaenk] {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.form-control:focus[b-kqczspaenk], .form-select:focus[b-kqczspaenk] {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* Form Labels */
.form-label[b-kqczspaenk] {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Action Buttons */
.form-actions[b-kqczspaenk] {
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
    margin-top: 2rem;
}

.save-btn[b-kqczspaenk] {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
}

.save-btn:hover:not(:disabled)[b-kqczspaenk] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-secondary[b-kqczspaenk] {
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 120px;
}

/* Alert Styling */
.alert[b-kqczspaenk] {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success[b-kqczspaenk] {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
}

.alert-danger[b-kqczspaenk] {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    color: #dc2626;
}

/* Medical Information Styling */
.form-section:nth-child(4)[b-kqczspaenk] {
    border-color: #10b981;
}

.form-section:nth-child(4):hover[b-kqczspaenk] {
    border-color: #10b981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.form-section:nth-child(4) .section-title[b-kqczspaenk] {
    color: #047857;
}

/* Insurance Information Styling */
.form-section:nth-child(5)[b-kqczspaenk] {
    border-color: #8b5cf6;
}

.form-section:nth-child(5):hover[b-kqczspaenk] {
    border-color: #8b5cf6;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
}

.form-section:nth-child(5) .section-title[b-kqczspaenk] {
    color: #7c3aed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .patient-header[b-kqczspaenk] {
        padding: 1rem;
    }
    
    .patient-header h3[b-kqczspaenk] {
        font-size: 1.5rem;
    }
    
    .profile-picture-section[b-kqczspaenk] {
        flex-direction: column;
        text-align: center;
    }
    
    .form-actions[b-kqczspaenk] {
        text-align: center;
    }
    
    .form-actions .d-flex[b-kqczspaenk] {
        flex-direction: column;
        gap: 1rem;
    }
    
    .save-btn[b-kqczspaenk], .btn-outline-secondary[b-kqczspaenk] {
        width: 100%;
    }
}

/* Validation Messages */
.validation-message[b-kqczspaenk] {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Floating Label Adjustments */
.form-floating > label[b-kqczspaenk] {
    color: #6b7280;
    font-weight: 400;
}

.form-floating > .form-control:focus ~ label[b-kqczspaenk],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-kqczspaenk],
.form-floating > .form-select ~ label[b-kqczspaenk] {
    color: #2563eb;
    font-weight: 500;
}

/* Textarea Styling */
textarea.form-control[b-kqczspaenk] {
    resize: vertical;
    min-height: 80px;
}

/* Custom Scrollbar for Long Forms */
.card-body[b-kqczspaenk] {
    max-height: 80vh;
    overflow-y: auto;
}

.card-body[b-kqczspaenk]::-webkit-scrollbar {
    width: 6px;
}

.card-body[b-kqczspaenk]::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.card-body[b-kqczspaenk]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.card-body[b-kqczspaenk]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Focus States */
.form-control:focus[b-kqczspaenk],
.form-select:focus[b-kqczspaenk] {
    outline: none;
}

/* Button Hover Effects */
.btn[b-kqczspaenk] {
    transition: all 0.3s ease;
}

.btn:hover[b-kqczspaenk] {
    transform: translateY(-1px);
}
/* _content/YumBlazor/Components/Pages/Patien_Pages/PatientView.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-uiyw2j3ywh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-uiyw2j3ywh] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Patient View Container */
.patient-view-container[b-uiyw2j3ywh] {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Printing Mode Styles */
body.printing-mode .patient-view-container[b-uiyw2j3ywh] {
    background: white !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.printing-mode main[b-uiyw2j3ywh] {
    margin-left: 0 !important;
    width: 100% !important;
}

/* Header Section */
.patient-header[b-uiyw2j3ywh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-icon[b-uiyw2j3ywh] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.action-buttons .btn[b-uiyw2j3ywh] {
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover[b-uiyw2j3ywh] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Patient Summary Card */
.patient-summary-card[b-uiyw2j3ywh] {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border: 1px solid #e1e8ed;
}

.patient-photo[b-uiyw2j3ywh] {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enhanced Profile Image Styles */
.profile-image[b-uiyw2j3ywh] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.profile-image:hover[b-uiyw2j3ywh] {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

.profile-placeholder[b-uiyw2j3ywh] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.profile-placeholder:hover[b-uiyw2j3ywh] {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.5);
}

.patient-name[b-uiyw2j3ywh] {
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.patient-id[b-uiyw2j3ywh] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.patient-details-grid[b-uiyw2j3ywh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.detail-item[b-uiyw2j3ywh] {
    display: flex;
    flex-direction: column;
}

.detail-item label[b-uiyw2j3ywh] {
    font-weight: 600;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item span[b-uiyw2j3ywh] {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 500;
}

.blood-type[b-uiyw2j3ywh] {
    color: #e53e3e;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Status Badges */
.status-badge[b-uiyw2j3ywh] {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.status-active[b-uiyw2j3ywh] {
    background: #c6f6d5;
    color: #22543d;
    border: 2px solid #48bb78;
}

.status-inactive[b-uiyw2j3ywh] {
    background: #fed7d7;
    color: #742a2a;
    border: 2px solid #fc8181;
}

.status-deceased[b-uiyw2j3ywh] {
    background: #e2e8f0;
    color: #4a5568;
    border: 2px solid #a0aec0;
}

/* Information Cards */
.info-card[b-uiyw2j3ywh] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover[b-uiyw2j3ywh] {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card .card-header[b-uiyw2j3ywh] {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-bottom: 2px solid #e1e8ed;
    border-radius: 15px 15px 0 0;
    padding: 1.5rem;
}

.card-title[b-uiyw2j3ywh] {
    color: #2d3748;
    font-weight: 600;
    margin: 0;
    font-size: 1.2rem;
}

.info-card .card-body[b-uiyw2j3ywh] {
    padding: 1.5rem;
}

/* Information Grid */
.info-grid[b-uiyw2j3ywh] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.info-item[b-uiyw2j3ywh] {
    display: flex;
    flex-direction: column;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f3f4;
}

.info-item:last-child[b-uiyw2j3ywh] {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item.full-width[b-uiyw2j3ywh] {
    grid-column: 1 / -1;
}

.info-item label[b-uiyw2j3ywh] {
    font-weight: 600;
    color: #718096;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span[b-uiyw2j3ywh] {
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.5;
}

/* Medical Sections */
.medical-section[b-uiyw2j3ywh] {
    background: #f7fafc;
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 4px solid #667eea;
}

.section-title[b-uiyw2j3ywh] {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.medical-text[b-uiyw2j3ywh] {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.medical-text.allergies[b-uiyw2j3ywh] {
    color: #e53e3e;
    font-weight: 500;
}

/* Record Information */
.record-info[b-uiyw2j3ywh] {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    border: 2px solid #cbd5e0;
}

/* Print Styles */
.print-only[b-uiyw2j3ywh] {
    display: none;
}

.no-print[b-uiyw2j3ywh] {
    display: block;
}

/* Print Header */
.print-header[b-uiyw2j3ywh] {
    border-bottom: 3px solid #667eea;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.hospital-name[b-uiyw2j3ywh] {
    color: #2d3748;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.document-title[b-uiyw2j3ywh] {
    color: #667eea;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.print-date[b-uiyw2j3ywh] {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Print Footer */
.print-footer[b-uiyw2j3ywh] {
    margin-top: 3rem;
    border-top: 2px solid #e1e8ed;
    padding-top: 1rem;
}

.disclaimer[b-uiyw2j3ywh] {
    font-size: 0.8rem;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.contact-info[b-uiyw2j3ywh] {
    font-size: 0.8rem;
    color: #718096;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .patient-name[b-uiyw2j3ywh] {
        font-size: 2rem;
    }
    
    .patient-details-grid[b-uiyw2j3ywh] {
        grid-template-columns: 1fr;
    }
    
    .action-buttons[b-uiyw2j3ywh] {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .action-buttons .btn[b-uiyw2j3ywh] {
        width: 100%;
    }
    
    .profile-image[b-uiyw2j3ywh],
    .profile-placeholder[b-uiyw2j3ywh] {
        width: 150px;
        height: 150px;
    }
    
    .profile-placeholder[b-uiyw2j3ywh] {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .patient-header[b-uiyw2j3ywh] {
        padding: 1rem 0;
    }
    
    .patient-summary-card[b-uiyw2j3ywh] {
        padding: 1rem;
    }
    
    .profile-image[b-uiyw2j3ywh],
    .profile-placeholder[b-uiyw2j3ywh] {
        width: 120px;
        height: 120px;
    }
    
    .profile-placeholder[b-uiyw2j3ywh] {
        font-size: 3rem;
    }
    
    .patient-name[b-uiyw2j3ywh] {
        font-size: 1.5rem;
    }
}

/* Print Media Query */
@media print {
    .no-print[b-uiyw2j3ywh] {
        display: none !important;
    }
    
    .print-only[b-uiyw2j3ywh] {
        display: block !important;
    }
    
    .patient-view-container[b-uiyw2j3ywh] {
        background: white !important;
        min-height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    body[b-uiyw2j3ywh] {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    main[b-uiyw2j3ywh] {
        margin-left: 0 !important;
        width: 100% !important;
    }
    
    .info-card[b-uiyw2j3ywh] {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        margin-bottom: 1rem !important;
    }
    
    .patient-summary-card[b-uiyw2j3ywh] {
        break-inside: avoid;
        box-shadow: none !important;
        border: 2px solid #ddd !important;
    }
    
    .medical-section[b-uiyw2j3ywh] {
        break-inside: avoid;
        border: 1px solid #ddd !important;
        background: #f9f9f9 !important;
    }
    
    body[b-uiyw2j3ywh] {
        font-size: 12pt !important;
        line-height: 1.4 !important;
    }
    
    h1[b-uiyw2j3ywh], h2[b-uiyw2j3ywh], h3[b-uiyw2j3ywh], h4[b-uiyw2j3ywh], h5[b-uiyw2j3ywh], h6[b-uiyw2j3ywh] {
        break-after: avoid;
    }
    
    .info-item[b-uiyw2j3ywh] {
        break-inside: avoid;
    }
    
    /* Hide navigation elements during print */
    .sidebar[b-uiyw2j3ywh] {
        display: none !important;
    }
    
    nav.navbar[b-uiyw2j3ywh] {
        display: none !important;
    }
    
    .navbar-dark[b-uiyw2j3ywh] {
        display: none !important;
    }
    
    .top-row[b-uiyw2j3ywh] {
        display: none !important;
    }
    
    .nav-scrollable[b-uiyw2j3ywh] {
        display: none !important;
    }
    
    /* Optimize profile image for print */
    .profile-image[b-uiyw2j3ywh],
    .profile-placeholder[b-uiyw2j3ywh] {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Utility Classes */
.text-muted[b-uiyw2j3ywh] {
    color: #718096 !important;
}

.fw-bold[b-uiyw2j3ywh] {
    font-weight: 700 !important;
}

.fw-semibold[b-uiyw2j3ywh] {
    font-weight: 600 !important;
}
/* _content/YumBlazor/Components/Pages/Patien_Pages/PatientViewPage.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-7j47t0oiem] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-7j47t0oiem] {
    text-align: center;
}

.loading-spinner[b-7j47t0oiem] {
    width: 3rem;
    height: 3rem;
}

/* Form Controls */
.form-control-plaintext[b-7j47t0oiem] {
    padding-left: 0;
    font-weight: 500;
    color: #212529;
}

/* Cards */
.card[b-7j47t0oiem] {
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card-header[b-7j47t0oiem] {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

/* Patient Avatar */
.patient-picture[b-7j47t0oiem] {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.avatar-placeholder[b-7j47t0oiem] {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    font-size: 2.5rem;
}
/* _content/YumBlazor/Components/Pages/Product_Pages/ProductDetail.razor.rz.scp.css */
/* Loading overlay */
.loading-overlay[b-8d9lcpatm3] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-8d9lcpatm3] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Page layout */
.product-detail-page[b-8d9lcpatm3] {
    background: var(--bs-gray-50);
    min-height: 100vh;
}

/* Hero section */
.product-hero[b-8d9lcpatm3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    color: white;
}

.breadcrumb-nav[b-8d9lcpatm3] {
    margin: 0;
}

.breadcrumb[b-8d9lcpatm3] {
    background: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a[b-8d9lcpatm3] {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover[b-8d9lcpatm3] {
    color: white;
}

.breadcrumb-item.active[b-8d9lcpatm3] {
    color: white;
}

.breadcrumb-item + .breadcrumb-item[b-8d9lcpatm3]::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Product content */
.product-content[b-8d9lcpatm3] {
    padding: 3rem 0;
}

/* Product gallery */
.product-gallery[b-8d9lcpatm3] {
    position: sticky;
    top: 2rem;
}

.main-image-container[b-8d9lcpatm3] {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-carousel[b-8d9lcpatm3] {
    position: relative;
}

.product-image[b-8d9lcpatm3] {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.single-image .product-image[b-8d9lcpatm3] {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Custom carousel controls */
.custom-control[b-8d9lcpatm3] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 5;
}

.custom-control:hover[b-8d9lcpatm3] {
    background: white;
    color: #764ba2;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev[b-8d9lcpatm3] {
    left: 1rem;
}

.carousel-control-next[b-8d9lcpatm3] {
    right: 1rem;
}

/* Custom indicators */
.custom-indicators[b-8d9lcpatm3] {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    display: flex;
    gap: 0.5rem;
}

.custom-indicators button[b-8d9lcpatm3] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    transition: all 0.3s ease;
}

.custom-indicators button.active[b-8d9lcpatm3] {
    background: white;
    border-color: white;
}

/* Product information */
.product-info[b-8d9lcpatm3] {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.product-header[b-8d9lcpatm3] {
    margin-bottom: 2rem;
}

.special-tag[b-8d9lcpatm3] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-title[b-8d9lcpatm3] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-meta[b-8d9lcpatm3] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.5rem;
}

.price-section[b-8d9lcpatm3] {
    flex: 1;
}

.price-from[b-8d9lcpatm3] {
    display: block;
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.price-amount[b-8d9lcpatm3] {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    display: block;
}

.price-to[b-8d9lcpatm3] {
    color: #718096;
    font-size: 0.95rem;
    display: block;
    margin-top: 0.25rem;
}

.visit-stats[b-8d9lcpatm3] {
    display: flex;
    align-items: center;
    color: #718096;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: var(--bs-gray-100);
    border-radius: 2rem;
}

/* Product description */
.product-description[b-8d9lcpatm3] {
    margin-bottom: 2rem;
}

.description-title[b-8d9lcpatm3] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bs-border-color);
}

.description-content[b-8d9lcpatm3] {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
}

.description-content p[b-8d9lcpatm3] {
    margin-bottom: 1rem;
}

.description-content h1[b-8d9lcpatm3],
.description-content h2[b-8d9lcpatm3],
.description-content h3[b-8d9lcpatm3],
.description-content h4[b-8d9lcpatm3],
.description-content h5[b-8d9lcpatm3],
.description-content h6[b-8d9lcpatm3] {
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Product actions */
.product-actions[b-8d9lcpatm3] {
    display: flex;
    gap: 1rem;
}

.contact-btn[b-8d9lcpatm3] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    flex: 1;
    transition: all 0.3s ease;
}

.contact-btn:hover[b-8d9lcpatm3] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.share-btn[b-8d9lcpatm3] {
    border: 2px solid var(--bs-border-color);
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn:hover[b-8d9lcpatm3] {
    background: var(--bs-gray-100);
    transform: translateY(-1px);
}

/* Media section */
.media-section[b-8d9lcpatm3] {
    background: white;
    padding: 4rem 0;
}

.section-title[b-8d9lcpatm3] {
    font-size: 2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 3rem;
}

.media-card[b-8d9lcpatm3] {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.media-card:hover[b-8d9lcpatm3] {
    transform: translateY(-4px);
}

.media-header[b-8d9lcpatm3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.youtube-card .media-header[b-8d9lcpatm3] {
    background: #ff0000;
    color: white;
}

.tiktok-card .media-header[b-8d9lcpatm3] {
    background: #000000;
    color: white;
}

.media-content[b-8d9lcpatm3] {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.media-content iframe[b-8d9lcpatm3] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive design */
@media (max-width: 991.98px) {
    .product-content[b-8d9lcpatm3] {
        padding: 2rem 0;
    }
    
    .product-gallery[b-8d9lcpatm3] {
        position: static;
        margin-bottom: 2rem;
    }
    
    .product-title[b-8d9lcpatm3] {
        font-size: 2rem;
    }
    
    .product-meta[b-8d9lcpatm3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .product-actions[b-8d9lcpatm3] {
        flex-direction: column;
    }
    
    .media-content[b-8d9lcpatm3] {
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .product-hero[b-8d9lcpatm3] {
        padding: 0.5rem 0;
    }
    
    .product-info[b-8d9lcpatm3] {
        padding: 1.5rem;
    }
    
    .product-title[b-8d9lcpatm3] {
        font-size: 1.75rem;
    }
    
    .price-amount[b-8d9lcpatm3] {
        font-size: 1.5rem;
    }
    
    .product-image[b-8d9lcpatm3] {
        height: 300px;
    }
    
    .single-image .product-image[b-8d9lcpatm3] {
        height: 300px;
    }
    
    .custom-control[b-8d9lcpatm3] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .media-content[b-8d9lcpatm3] {
        height: 200px;
    }
    
    .section-title[b-8d9lcpatm3] {
        font-size: 1.5rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-8d9lcpatm3 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-gallery[b-8d9lcpatm3],
.product-info[b-8d9lcpatm3] {
    animation: fadeInUp-b-8d9lcpatm3 0.6s ease forwards;
}

.product-info[b-8d9lcpatm3] {
    animation-delay: 0.2s;
}

.media-card[b-8d9lcpatm3] {
    animation: fadeInUp-b-8d9lcpatm3 0.6s ease forwards;
}

.media-card:nth-child(2)[b-8d9lcpatm3] {
    animation-delay: 0.1s;
}

.media-card:nth-child(3)[b-8d9lcpatm3] {
    animation-delay: 0.2s;
}

.media-card:nth-child(4)[b-8d9lcpatm3] {
    animation-delay: 0.3s;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *[b-8d9lcpatm3] {
        animation: none !important;
        transition: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .product-info[b-8d9lcpatm3],
    .media-card[b-8d9lcpatm3] {
        border: 2px solid #000;
    }
    
    .custom-control[b-8d9lcpatm3] {
        border: 2px solid #000;
    }
}
/* _content/YumBlazor/Components/Pages/Product_Pages/ProductInterestAdd.razor.rz.scp.css */
/* Loading overlay */
.loading-overlay[b-8qnkdb007n] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-8qnkdb007n] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Main card styling */
.product-interest-card[b-8qnkdb007n] {
    border-radius: 1rem;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

/* Header styling */
.product-interest-header[b-8qnkdb007n] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.header-icon[b-8qnkdb007n] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Beautiful Alert Styling */
.beautiful-alert[b-8qnkdb007n] {
    border: none;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideInDown-b-8qnkdb007n 0.5s ease;
}

.beautiful-alert.warning-alert[b-8qnkdb007n] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #f39c12;
}

.beautiful-alert.error-alert[b-8qnkdb007n] {
    background: linear-gradient(135deg, #f8d7da 0%, #fab1a0 100%);
    border-left: 4px solid #e74c3c;
}

.beautiful-alert .alert-icon[b-8qnkdb007n] {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.warning-alert .alert-icon[b-8qnkdb007n] {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.error-alert .alert-icon[b-8qnkdb007n] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.beautiful-alert .alert-content[b-8qnkdb007n] {
    flex: 1;
}

.beautiful-alert .alert-title[b-8qnkdb007n] {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bs-gray-800);
}

.beautiful-alert .alert-message[b-8qnkdb007n] {
    margin-bottom: 1rem;
    color: var(--bs-gray-700);
    line-height: 1.5;
}

/* Product information section */
.product-info-section[b-8qnkdb007n] {
    background: var(--bs-gray-50);
    border-bottom: 1px solid var(--bs-border-color);
}

.product-image-container[b-8qnkdb007n] {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.product-image[b-8qnkdb007n] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image[b-8qnkdb007n] {
    width: 100%;
    height: 100%;
    background: var(--bs-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-gray-400);
    font-size: 3rem;
}

.product-details[b-8qnkdb007n] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name[b-8qnkdb007n] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    margin-bottom: 0.75rem;
}

.product-price[b-8qnkdb007n] {
    margin-bottom: 1rem;
}

.price-range[b-8qnkdb007n] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #28a745;
}

.price-separator[b-8qnkdb007n] {
    margin: 0 0.5rem;
    color: var(--bs-gray-400);
}

.special-tag[b-8qnkdb007n] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    width: fit-content;
}

/* Form container */
.form-container[b-8qnkdb007n] {
    padding: 2rem;
}

/* Form sections */
.form-section[b-8qnkdb007n] {
    background: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--bs-border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.form-section:hover[b-8qnkdb007n] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-header[b-8qnkdb007n] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.section-title[b-8qnkdb007n] {
    margin: 0;
    color: var(--bs-gray-700);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.section-content[b-8qnkdb007n] {
    padding: 1.5rem;
}

/* Form controls */
.form-control[b-8qnkdb007n] {
    border-radius: 0.75rem;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus[b-8qnkdb007n] {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.form-floating > label[b-8qnkdb007n] {
    font-weight: 500;
    color: var(--bs-gray-600);
}

.form-floating > .form-control:focus ~ label[b-8qnkdb007n],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-8qnkdb007n] {
    color: #ff6b6b;
    font-weight: 600;
}

/* Required field styling */
.form-floating > label[b-8qnkdb007n]::after {
    content: " *";
    color: var(--bs-danger);
    font-weight: 600;
}

/* Optional field styling (override for optional fields) */
.form-floating > label[for="lineId"][b-8qnkdb007n]::after,
.form-floating > label[for="note"][b-8qnkdb007n]::after {
    content: "";
}

/* Validation messages */
.text-danger.small[b-8qnkdb007n] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

/* Form text */
.form-text[b-8qnkdb007n] {
    color: var(--bs-gray-600);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

/* Form actions */
.form-actions[b-8qnkdb007n] {
    background: var(--bs-gray-50);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--bs-border-color);
    margin: 0 -2rem -2rem -2rem;
}

/* Button styling */
.btn[b-8qnkdb007n] {
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-lg[b-8qnkdb007n] {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary[b-8qnkdb007n] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover:not(:disabled)[b-8qnkdb007n] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.btn-outline-secondary[b-8qnkdb007n] {
    border: 2px solid var(--bs-gray-300);
    color: var(--bs-gray-600);
}

.btn-outline-secondary:hover[b-8qnkdb007n] {
    background: var(--bs-gray-600);
    border-color: var(--bs-gray-600);
    transform: translateY(-1px);
}

/* Loading state for buttons */
.btn:disabled[b-8qnkdb007n] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Confirmation Modal */
.confirmation-modal[b-8qnkdb007n] {
    border-radius: 1rem;
    border: none;
    overflow: hidden;
}

.confirmation-modal .modal-header[b-8qnkdb007n] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.confirmation-icon[b-8qnkdb007n] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
}

.confirmation-title[b-8qnkdb007n] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    margin-bottom: 1rem;
}

.confirmation-message[b-8qnkdb007n] {
    color: var(--bs-gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Summary info */
.summary-info[b-8qnkdb007n] {
    background: var(--bs-gray-50);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem 0;
}

.info-item[b-8qnkdb007n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bs-border-color);
}

.info-item:last-child[b-8qnkdb007n] {
    border-bottom: none;
}

.info-label[b-8qnkdb007n] {
    font-weight: 600;
    color: var(--bs-gray-700);
}

.info-value[b-8qnkdb007n] {
    color: var(--bs-gray-800);
    font-weight: 500;
}

/* Success Modal */
.success-modal[b-8qnkdb007n] {
    border-radius: 1rem;
    border: none;
    overflow: hidden;
}

.success-modal .modal-header[b-8qnkdb007n] {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.success-icon[b-8qnkdb007n] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    animation: bounceIn-b-8qnkdb007n 0.6s ease;
}

.success-title[b-8qnkdb007n] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    margin-bottom: 1rem;
}

.success-message[b-8qnkdb007n] {
    color: var(--bs-gray-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.success-details[b-8qnkdb007n] {
    background: rgba(0, 184, 148, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem 0;
}

.detail-item[b-8qnkdb007n] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--bs-gray-700);
}

.detail-item:last-child[b-8qnkdb007n] {
    margin-bottom: 0;
}

/* Error Modal */
.error-modal[b-8qnkdb007n] {
    border-radius: 1rem;
    border: none;
    overflow: hidden;
}

.error-modal .modal-header[b-8qnkdb007n] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
}

.error-icon[b-8qnkdb007n] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    animation: shake-b-8qnkdb007n 0.6s ease;
}

.error-title[b-8qnkdb007n] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-gray-800);
    margin-bottom: 1rem;
}

.error-message[b-8qnkdb007n] {
    color: var(--bs-gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.error-suggestions[b-8qnkdb007n] {
    background: rgba(231, 76, 60, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1rem 0;
    text-align: left;
}

.error-suggestions ul[b-8qnkdb007n] {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.error-suggestions li[b-8qnkdb007n] {
    margin-bottom: 0.25rem;
    color: var(--bs-gray-700);
}

/* Responsive design */
@media (max-width: 768px) {
    .product-interest-header[b-8qnkdb007n] {
        padding: 1rem;
        text-align: center;
    }
    
    .header-icon[b-8qnkdb007n] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .form-container[b-8qnkdb007n] {
        padding: 1rem;
    }
    
    .section-content[b-8qnkdb007n] {
        padding: 1rem;
    }
    
    .form-actions[b-8qnkdb007n] {
        padding: 1rem;
        margin: 0 -1rem -1rem -1rem;
    }
    
    .form-actions .d-flex[b-8qnkdb007n] {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .form-actions .btn[b-8qnkdb007n] {
        width: 100%;
    }
    
    .product-details[b-8qnkdb007n] {
        padding: 1rem;
    }
    
    .product-name[b-8qnkdb007n] {
        font-size: 1.25rem;
    }
    
    .confirmation-modal .modal-header[b-8qnkdb007n],
    .success-modal .modal-header[b-8qnkdb007n],
    .error-modal .modal-header[b-8qnkdb007n] {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    
    .confirmation-icon[b-8qnkdb007n],
    .success-icon[b-8qnkdb007n],
    .error-icon[b-8qnkdb007n] {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .beautiful-alert[b-8qnkdb007n] {
        flex-direction: column;
        text-align: center;
    }
    
    .beautiful-alert .alert-icon[b-8qnkdb007n] {
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes slideInDown-b-8qnkdb007n {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn-b-8qnkdb007n {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shake-b-8qnkdb007n {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-5px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(5px);
    }
}

@keyframes fadeInUp-b-8qnkdb007n {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-interest-card[b-8qnkdb007n] {
    animation: fadeInUp-b-8qnkdb007n 0.6s ease forwards;
}

.form-section[b-8qnkdb007n] {
    animation: fadeInUp-b-8qnkdb007n 0.6s ease forwards;
}

.form-section:nth-child(2)[b-8qnkdb007n] {
    animation-delay: 0.1s;
}

.form-section:nth-child(3)[b-8qnkdb007n] {
    animation-delay: 0.2s;
}

/* Focus states for accessibility */
.form-control:focus[b-8qnkdb007n] {
    outline: none;
}

.btn:focus[b-8qnkdb007n] {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.5);
}

/* Enhanced floating labels */
.form-floating > .form-control:focus ~ label[b-8qnkdb007n],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-8qnkdb007n] {
    opacity: 0.85;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Textarea specific styling */
textarea.form-control[b-8qnkdb007n] {
    resize: vertical;
    min-height: 120px;
}
/* _content/YumBlazor/Components/Pages/Product_Pages/ProductInterestPage.razor.rz.scp.css */
/* Loading overlay */
.loading-overlay[b-82592qnrum] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-82592qnrum] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Main card styling */
.product-interest-card[b-82592qnrum] {
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 auto;
}

/* Header styling */
.product-interest-header[b-82592qnrum] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.header-icon[b-82592qnrum] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.header-stats .badge[b-82592qnrum] {
    font-weight: 500;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table actions */
.table-actions[b-82592qnrum] {
    background: var(--bs-gray-50) !important;
}

.search-group .form-control:focus[b-82592qnrum] {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.status-filter .form-select[b-82592qnrum],
.page-size-selector .form-select[b-82592qnrum] {
    border-radius: 0.5rem;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.status-filter .form-select:focus[b-82592qnrum],
.page-size-selector .form-select:focus[b-82592qnrum] {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

.refresh-button .btn[b-82592qnrum] {
    border-radius: 0.5rem;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
}

.refresh-button .btn:hover[b-82592qnrum] {
    background: #ff6b6b;
    border-color: #ff6b6b;
    color: white;
    transform: rotate(180deg);
}

/* Table styling */
.interest-grid[b-82592qnrum] {
    border-radius: 0 0 1rem 1rem;
    overflow: hidden;
}

.interest-table[b-82592qnrum] {
    margin: 0;
    font-size: 0.95rem;
}

.interest-table thead[b-82592qnrum] {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--bs-gray-100);
}

.interest-table th[b-82592qnrum] {
    background: var(--bs-gray-100);
    border-bottom: 2px solid var(--bs-border-color);
    font-weight: 600;
    color: var(--bs-gray-700);
    padding: 1rem;
    white-space: nowrap;
}

.interest-table td[b-82592qnrum] {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--bs-border-color);
}

.interest-table tbody tr[b-82592qnrum] {
    transition: all 0.2s ease;
}

.interest-table tbody tr:hover[b-82592qnrum] {
    background-color: rgba(255, 107, 107, 0.05);
    transform: translateX(2px);
}

/* Column specific styling */
.id-column[b-82592qnrum] {
    min-width: 80px;
    text-align: center;
}

.product-column[b-82592qnrum] {
    min-width: 200px;
}

.customer-column[b-82592qnrum] {
    min-width: 250px;
}

.date-column[b-82592qnrum] {
    min-width: 150px;
}

.status-column[b-82592qnrum] {
    min-width: 150px;
    text-align: center;
}

.actions-column[b-82592qnrum] {
    min-width: 120px;
    text-align: center;
}

/* Product info styling */
.product-info[b-82592qnrum] {
    display: flex;
    flex-direction: column;
}

/* Customer info styling */
.customer-info[b-82592qnrum] {
    display: flex;
    flex-direction: column;
}

/* Date info styling */
.date-info[b-82592qnrum] {
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Status badges */
.status-badge[b-82592qnrum] {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.status-badge.status-new[b-82592qnrum] {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.2);
}

.status-badge.status-contacted[b-82592qnrum] {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.status-badge.status-closed[b-82592qnrum] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.status-badge.status-unknown[b-82592qnrum] {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

/* Action buttons */
.action-buttons[b-82592qnrum] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-buttons .btn[b-82592qnrum] {
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.action-buttons .btn:hover[b-82592qnrum] {
    transform: translateY(-1px);
}

/* Pagination Container */
.pagination-container[b-82592qnrum] {
    background: var(--bs-gray-50) !important;
    border-top: 2px solid var(--bs-border-color) !important;
}

.pagination-info[b-82592qnrum] {
    font-size: 0.875rem;
    color: var(--bs-gray-600);
    font-weight: 500;
}

/* Custom Pagination Styling */
.pagination-container .page-link[b-82592qnrum] {
    border-radius: 0.5rem !important;
    margin: 0 0.125rem;
    border: 1px solid var(--bs-border-color);
    color: var(--bs-gray-600);
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease;
}

.pagination-container .page-link:hover[b-82592qnrum] {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    color: #ff6b6b;
    transform: translateY(-1px);
}

.pagination-container .page-item.active .page-link[b-82592qnrum] {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.pagination-container .page-item.disabled .page-link[b-82592qnrum] {
    background: var(--bs-gray-100);
    border-color: var(--bs-border-color);
    color: var(--bs-gray-400);
}

.pagination-container .page-link:focus[b-82592qnrum] {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
}

/* Empty state */
.empty-state[b-82592qnrum] {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon[b-82592qnrum] {
    width: 80px;
    height: 80px;
    background: var(--bs-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bs-gray-400);
    margin: 0 auto;
}

/* Detail card styling */
.detail-card[b-82592qnrum] {
    border-radius: 1rem;
    overflow: hidden;
    animation: slideIn-b-82592qnrum 0.3s ease;
}

.detail-header[b-82592qnrum] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.detail-icon[b-82592qnrum] {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Detail sections */
.detail-section[b-82592qnrum] {
    background: var(--bs-gray-50);
    border-radius: 0.75rem;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid var(--bs-border-color);
}

.section-title[b-82592qnrum] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bs-gray-700);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bs-border-color);
    display: flex;
    align-items: center;
}

.detail-content[b-82592qnrum] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item[b-82592qnrum] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-item:last-child[b-82592qnrum] {
    border-bottom: none;
}

.detail-label[b-82592qnrum] {
    font-weight: 600;
    color: var(--bs-gray-600);
    min-width: 120px;
    flex-shrink: 0;
}

.detail-value[b-82592qnrum] {
    color: var(--bs-gray-800);
    flex: 1;
    text-align: right;
}

.detail-value a[b-82592qnrum] {
    color: #ff6b6b;
    transition: color 0.2s ease;
}

.detail-value a:hover[b-82592qnrum] {
    color: #ee5a24;
}

/* Note content */
.note-content[b-82592qnrum] {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--bs-border-color);
    font-style: italic;
    color: var(--bs-gray-700);
}

/* Action section */
.action-section[b-82592qnrum] {
    background: var(--bs-gray-50);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--bs-border-color);
}

.action-buttons-group[b-82592qnrum] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-buttons-group .btn[b-82592qnrum] {
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.action-buttons-group .btn:hover[b-82592qnrum] {
    transform: translateY(-1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .product-interest-header[b-82592qnrum] {
        padding: 1rem;
        text-align: center;
    }
    
    .header-icon[b-82592qnrum] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .table-actions[b-82592qnrum] {
        padding: 1rem !important;
    }
    
    .table-actions .row[b-82592qnrum] {
        gap: 1rem;
    }
    
    .table-actions .col-md-4[b-82592qnrum],
    .table-actions .col-md-3[b-82592qnrum],
    .table-actions .col-md-2[b-82592qnrum] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .interest-table[b-82592qnrum] {
        font-size: 0.875rem;
    }
    
    .interest-table th[b-82592qnrum],
    .interest-table td[b-82592qnrum] {
        padding: 0.75rem 0.5rem;
    }
    
    .action-buttons[b-82592qnrum] {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .action-buttons .btn[b-82592qnrum] {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
        width: 100%;
    }
    
    .detail-header[b-82592qnrum] {
        padding: 1rem;
    }
    
    .detail-icon[b-82592qnrum] {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .detail-item[b-82592qnrum] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .detail-value[b-82592qnrum] {
        text-align: left;
    }
    
    .action-buttons-group[b-82592qnrum] {
        flex-direction: column;
    }
    
    .action-buttons-group .btn[b-82592qnrum] {
        width: 100%;
    }
    
    .pagination-container[b-82592qnrum] {
        padding: 1rem !important;
    }
    
    .pagination-container .d-flex[b-82592qnrum] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .pagination-info[b-82592qnrum] {
        order: 2;
    }
    
    /* Hide less important columns on mobile */
    .date-column[b-82592qnrum] {
        display: none;
    }
}

@media (max-width: 576px) {
    .customer-column[b-82592qnrum] {
        min-width: 200px;
    }
    
    .product-column[b-82592qnrum] {
        min-width: 150px;
    }
    
    .pagination-container .page-link[b-82592qnrum] {
        padding: 0.375rem 0.5rem;
        font-size: 0.875rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-82592qnrum {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn-b-82592qnrum {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-interest-card[b-82592qnrum] {
    animation: fadeInUp-b-82592qnrum 0.6s ease forwards;
}

/* Scrollbar styling for table */
.interest-grid[b-82592qnrum]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.interest-grid[b-82592qnrum]::-webkit-scrollbar-track {
    background: var(--bs-gray-100);
    border-radius: 4px;
}

.interest-grid[b-82592qnrum]::-webkit-scrollbar-thumb {
    background: var(--bs-gray-400);
    border-radius: 4px;
}

.interest-grid[b-82592qnrum]::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-500);
}

/* QuickGrid specific styling */
.interest-table .quickgrid[b-82592qnrum] {
    border: none;
}

.interest-table .quickgrid-headerrow[b-82592qnrum] {
    background: var(--bs-gray-100);
}

.interest-table .col-sort-button[b-82592qnrum] {
    background: none;
    border: none;
    color: inherit;
    font-weight: inherit;
    padding: 0;
    text-align: left;
    width: 100%;
}

.interest-table .col-sort-button:hover[b-82592qnrum] {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.25rem;
}

.interest-table .sort-asc[b-82592qnrum]::after {
    content: " ↑";
    color: #ff6b6b;
    font-weight: bold;
}

.interest-table .sort-desc[b-82592qnrum]::after {
    content: " ↓";
    color: #ff6b6b;
    font-weight: bold;
}

/* Page size selector styling */
.page-size-selector label[b-82592qnrum] {
    font-weight: 500;
    color: var(--bs-gray-700);
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}
/* _content/YumBlazor/Components/Pages/Product_Pages/ProductList.razor.rz.scp.css */
/* Main container and card styling */
.product-list-card[b-6939340dmc] {
    border-radius: 1rem;
    overflow: hidden;
}

/* Header styling */
.product-header[b-6939340dmc] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.header-icon[b-6939340dmc] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.header-stats .badge[b-6939340dmc] {
    font-weight: 500;
    border-radius: 2rem;
}

/* Loading overlay */
.loading-overlay[b-6939340dmc] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-6939340dmc] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Table actions */
.table-actions[b-6939340dmc] {
    background: var(--bs-gray-50) !important;
}

.search-group .form-control:focus[b-6939340dmc] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.add-product-btn[b-6939340dmc] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-product-btn:hover[b-6939340dmc] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Table styling */
.table-header[b-6939340dmc] {
    background: var(--bs-gray-100);
    position: sticky;
    top: 0;
    z-index: 1;
}

.table-header th[b-6939340dmc] {
    font-weight: 600;
    color: var(--bs-gray-700);
    padding: 1rem;
    border-bottom: 2px solid var(--bs-border-color);
}

.product-table[b-6939340dmc] {
    font-size: 0.95rem;
}

.product-row[b-6939340dmc] {
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--bs-border-color);
}

.product-row:hover[b-6939340dmc] {
    background-color: rgba(102, 126, 234, 0.05);
    transform: translateX(2px);
}

/* Product image and info */
.product-image[b-6939340dmc] {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 0.5rem;
    background: var(--bs-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img[b-6939340dmc] {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image[b-6939340dmc] {
    color: var(--bs-gray-400);
    font-size: 1.2rem;
}

.product-info[b-6939340dmc] {
    flex: 1;
}

.product-name[b-6939340dmc] {
    color: var(--bs-gray-800);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Price display */
.price-display[b-6939340dmc] {
    font-size: 0.95rem;
}

/* Category badge */
.category-badge[b-6939340dmc] {
    background: var(--bs-gray-100);
    color: var(--bs-gray-700);
    padding: 0.5rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

/* Action buttons */
.action-buttons[b-6939340dmc] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-buttons .btn[b-6939340dmc] {
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
}

.action-buttons .btn:hover[b-6939340dmc] {
    transform: translateY(-1px);
}

.btn-outline-primary:hover[b-6939340dmc] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: transparent;
}

.btn-outline-danger:hover[b-6939340dmc] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: transparent;
}

/* Badges */
.badge[b-6939340dmc] {
    font-weight: 500;
    border-radius: 0.5rem;
}

.bg-success-subtle[b-6939340dmc] {
    background-color: rgba(25, 135, 84, 0.1) !important;
}

.bg-warning-subtle[b-6939340dmc] {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.bg-primary-subtle[b-6939340dmc] {
    background-color: rgba(13, 110, 253, 0.1) !important;
}

.bg-info-subtle[b-6939340dmc] {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

/* Empty state */
.empty-state[b-6939340dmc] {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon[b-6939340dmc] {
    width: 80px;
    height: 80px;
    background: var(--bs-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bs-gray-400);
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .product-header[b-6939340dmc] {
        padding: 1rem;
    }
    
    .header-icon[b-6939340dmc] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .table-actions[b-6939340dmc] {
        padding: 1rem !important;
    }
    
    .table-actions .row[b-6939340dmc] {
        gap: 1rem;
    }
    
    .table-actions .col-md-6[b-6939340dmc] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .action-buttons[b-6939340dmc] {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .action-buttons .btn[b-6939340dmc] {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-6939340dmc {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-list-card[b-6939340dmc] {
    animation: fadeInUp-b-6939340dmc 0.6s ease forwards;
}

/* Scrollbar styling */
.table-responsive[b-6939340dmc]::-webkit-scrollbar {
    height: 8px;
}

.table-responsive[b-6939340dmc]::-webkit-scrollbar-track {
    background: var(--bs-gray-100);
    border-radius: 4px;
}

.table-responsive[b-6939340dmc]::-webkit-scrollbar-thumb {
    background: var(--bs-gray-400);
    border-radius: 4px;
}

.table-responsive[b-6939340dmc]::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-500);
}
/* _content/YumBlazor/Components/Pages/Product_Pages/ProductUpsert.razor.rz.scp.css */
/* Main container and card styling */
.product-form-card[b-ulzljv2dlk] {
    border-radius: 1rem;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styling */
.product-header[b-ulzljv2dlk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.header-icon[b-ulzljv2dlk] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Loading overlay */
.loading-overlay[b-ulzljv2dlk] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-ulzljv2dlk] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Form container */
.form-container[b-ulzljv2dlk] {
    padding: 2rem;
}

/* Form sections */
.form-section[b-ulzljv2dlk] {
    background: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--bs-border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.form-section:hover[b-ulzljv2dlk] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-header[b-ulzljv2dlk] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.section-title[b-ulzljv2dlk] {
    margin: 0;
    color: var(--bs-gray-700);
    font-weight: 600;
    font-size: 1.1rem;
}

.section-content[b-ulzljv2dlk] {
    padding: 1.5rem;
}

/* Form controls */
.form-control[b-ulzljv2dlk], .form-select[b-ulzljv2dlk] {
    border-radius: 0.75rem;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus[b-ulzljv2dlk], .form-select:focus[b-ulzljv2dlk] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control-lg[b-ulzljv2dlk] {
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

.form-floating > label[b-ulzljv2dlk] {
    font-weight: 500;
    color: var(--bs-gray-600);
}

/* Editor container */
.editor-container[b-ulzljv2dlk] {
    border: 2px solid var(--bs-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.editor-container:focus-within[b-ulzljv2dlk] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Form switches */
.form-check-lg .form-check-input[b-ulzljv2dlk] {
    width: 2.5rem;
    height: 1.25rem;
    border-radius: 2rem;
    transform: scale(1.2);
}

.form-check-lg .form-check-label[b-ulzljv2dlk] {
    font-size: 1rem;
    margin-left: 0.5rem;
}

/* Image upload cards */
.image-upload-card[b-ulzljv2dlk] {
    border: 2px dashed var(--bs-border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 200px;
}

.image-upload-card:hover[b-ulzljv2dlk] {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.upload-area[b-ulzljv2dlk] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 1rem;
    text-align: center;
    background: var(--bs-gray-50);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.upload-area:hover[b-ulzljv2dlk] {
    background: rgba(102, 126, 234, 0.05);
}

.upload-icon[b-ulzljv2dlk] {
    font-size: 2rem;
    color: var(--bs-gray-400);
    margin-bottom: 0.5rem;
}

.upload-title[b-ulzljv2dlk] {
    font-weight: 600;
    color: var(--bs-gray-700);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.upload-subtitle[b-ulzljv2dlk] {
    color: var(--bs-gray-500);
    font-size: 0.85rem;
    margin: 0;
}

.file-input[b-ulzljv2dlk] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: none;
}

/* Image preview */
.image-preview[b-ulzljv2dlk] {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.preview-image[b-ulzljv2dlk] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-overlay[b-ulzljv2dlk] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-preview:hover .image-overlay[b-ulzljv2dlk] {
    opacity: 1;
}

.image-preview:hover .preview-image[b-ulzljv2dlk] {
    transform: scale(1.05);
}

/* Form actions */
.form-actions[b-ulzljv2dlk] {
    background: var(--bs-gray-50);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--bs-border-color);
    margin: 0 -2rem -2rem -2rem;
}

/* Button styling */
.btn[b-ulzljv2dlk] {
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-lg[b-ulzljv2dlk] {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary[b-ulzljv2dlk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover[b-ulzljv2dlk] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline-secondary[b-ulzljv2dlk] {
    border: 2px solid var(--bs-gray-300);
    color: var(--bs-gray-600);
}

.btn-outline-secondary:hover[b-ulzljv2dlk] {
    background: var(--bs-gray-600);
    border-color: var(--bs-gray-600);
    transform: translateY(-1px);
}

/* Validation messages */
.text-danger.small[b-ulzljv2dlk] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.alert[b-ulzljv2dlk] {
    border-radius: 0.75rem;
    border: none;
}

/* Responsive design */
@media (max-width: 768px) {
    .product-header[b-ulzljv2dlk] {
        padding: 1rem;
    }
    
    .header-icon[b-ulzljv2dlk] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .form-container[b-ulzljv2dlk] {
        padding: 1rem;
    }
    
    .section-content[b-ulzljv2dlk] {
        padding: 1rem;
    }
    
    .form-actions[b-ulzljv2dlk] {
        padding: 1rem;
        margin: 0 -1rem -1rem -1rem;
    }
    
    .image-upload-card[b-ulzljv2dlk] {
        height: 150px;
    }
    
    .form-actions .d-flex[b-ulzljv2dlk] {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .form-actions .btn[b-ulzljv2dlk] {
        width: 100%;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-ulzljv2dlk {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-form-card[b-ulzljv2dlk] {
    animation: fadeInUp-b-ulzljv2dlk 0.6s ease forwards;
}

.form-section[b-ulzljv2dlk] {
    animation: fadeInUp-b-ulzljv2dlk 0.6s ease forwards;
}

.form-section:nth-child(2)[b-ulzljv2dlk] {
    animation-delay: 0.1s;
}

.form-section:nth-child(3)[b-ulzljv2dlk] {
    animation-delay: 0.2s;
}

.form-section:nth-child(4)[b-ulzljv2dlk] {
    animation-delay: 0.3s;
}

.form-section:nth-child(5)[b-ulzljv2dlk] {
    animation-delay: 0.4s;
}

.form-section:nth-child(6)[b-ulzljv2dlk] {
    animation-delay: 0.5s;
}

/* Focus states for accessibility */
.file-input:focus + .upload-area[b-ulzljv2dlk] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Loading state for submit button */
.btn:disabled[b-ulzljv2dlk] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced form check styling */
.form-check-input:checked[b-ulzljv2dlk] {
    background-color: #667eea;
    border-color: #667eea;
}

.form-check-input:focus[b-ulzljv2dlk] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Section spacing improvements */
.section-header small[b-ulzljv2dlk] {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}
/* _content/YumBlazor/Components/Pages/ProfileEditPage.razor.rz.scp.css */
.profile-page[b-oa0yzkrpo8] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.profile-container[b-oa0yzkrpo8] {
    max-width: 900px;
    margin: 0 auto;
}

.profile-card[b-oa0yzkrpo8] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.profile-header[b-oa0yzkrpo8] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

    .profile-header[b-oa0yzkrpo8]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

.profile-avatar[b-oa0yzkrpo8] {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.profile-title[b-oa0yzkrpo8] {
    margin: 0;
    font-weight: 600;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.info-card[b-oa0yzkrpo8], .edit-card[b-oa0yzkrpo8] {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.card-header-custom[b-oa0yzkrpo8] {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-bottom: 2px solid #e3f2fd;
    padding: 1.5rem;
}

    .card-header-custom h5[b-oa0yzkrpo8] {
        color: #2c3e50;
        font-weight: 600;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.info-row[b-oa0yzkrpo8] {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f0f2f5;
    transition: background-color 0.3s ease;
}

    .info-row:hover[b-oa0yzkrpo8] {
        background-color: #f8f9fa;
    }

    .info-row:last-child[b-oa0yzkrpo8] {
        border-bottom: none;
    }

.info-label[b-oa0yzkrpo8] {
    font-weight: 600;
    color: #495057;
    min-width: 120px;
}

.info-value[b-oa0yzkrpo8] {
    color: #6c757d;
}

.form-control-custom[b-oa0yzkrpo8] {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

    .form-control-custom:focus[b-oa0yzkrpo8] {
        border-color: #667eea;
        box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    }

.form-label-custom[b-oa0yzkrpo8] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.btn-custom[b-oa0yzkrpo8] {
    border-radius: 10px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-custom[b-oa0yzkrpo8] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

    .btn-primary-custom:hover[b-oa0yzkrpo8] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    }

.btn-warning-custom[b-oa0yzkrpo8] {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #2d3436;
}

    .btn-warning-custom:hover[b-oa0yzkrpo8] {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 183, 77, 0.3);
    }

.alert-custom[b-oa0yzkrpo8] {
    border-radius: 10px;
    border: none;
    font-weight: 500;
    animation: slideInDown-b-oa0yzkrpo8 0.5s ease-out;
}

.loading-spinner[b-oa0yzkrpo8] {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.spinner-custom[b-oa0yzkrpo8] {
    width: 3rem;
    height: 3rem;
    border: 4px solid rgba(102, 126, 234, 0.1);
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-oa0yzkrpo8 1s linear infinite;
}

@keyframes spin-b-oa0yzkrpo8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInDown-b-oa0yzkrpo8 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon[b-oa0yzkrpo8] {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

.profile-image[b-oa0yzkrpo8] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-image-overlay[b-oa0yzkrpo8] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    font-size: 0.8rem;
    color: white;
    font-weight: 500;
}

.profile-avatar:hover .profile-image-overlay[b-oa0yzkrpo8] {
    opacity: 1;
}

.profile-avatar[b-oa0yzkrpo8] {
    cursor: pointer;
    position: relative;
}

.icon-small[b-oa0yzkrpo8] {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    margin-bottom: 0.25rem;
}

.current-profile-image[b-oa0yzkrpo8] {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    object-fit: cover;
}

.preview-image[b-oa0yzkrpo8] {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #dee2e6;
}

.modal-content[b-oa0yzkrpo8] {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header[b-oa0yzkrpo8] {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.modal-body[b-oa0yzkrpo8] {
    padding: 1.5rem;
}

.modal-footer[b-oa0yzkrpo8] {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .current-profile-image[b-oa0yzkrpo8],
    .preview-image[b-oa0yzkrpo8] {
        max-width: 150px;
        max-height: 150px;
    }
}
/* _content/YumBlazor/Components/Pages/Report_Pages/ReportListByCaseId.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-h3tric9hkz] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-h3tric9hkz] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
.header-icon[b-h3tric9hkz] {
    font-size: 1.5rem;
}

.header-info small[b-h3tric9hkz] {
    display: block;
    line-height: 1.5;
}

/* Action Bar */
.action-bar[b-h3tric9hkz] {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e9ecef;
}

.search-box[b-h3tric9hkz] {
    min-width: 300px;
}

    .search-box .input-group-text[b-h3tric9hkz] {
        background-color: #fff;
        border-right: none;
    }

    .search-box .form-control[b-h3tric9hkz] {
        border-left: none;
    }

        .search-box .form-control:focus[b-h3tric9hkz] {
            border-color: #86b7fe;
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

.status-filter[b-h3tric9hkz] {
    min-width: 150px;
}

/* Table Styling */
.table th[b-h3tric9hkz] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table tbody tr[b-h3tric9hkz] {
    transition: all 0.2s ease;
}

    .table tbody tr:hover[b-h3tric9hkz] {
        background-color: #f8f9fa;
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.avatar-sm[b-h3tric9hkz] {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

.vital-signs-summary small[b-h3tric9hkz] {
    line-height: 1.8;
}

/* Button Group */
.btn-group .btn[b-h3tric9hkz] {
    border-radius: 0.25rem;
    margin-right: 0.25rem;
}

    .btn-group .btn:last-child[b-h3tric9hkz] {
        margin-right: 0;
    }

/* Empty State */
.empty-state[b-h3tric9hkz] {
    padding: 3rem 1rem;
}

.empty-icon[b-h3tric9hkz] {
    font-size: 4rem;
}

/* Modal Styling */
.modal-backdrop.show[b-h3tric9hkz] {
    opacity: 0.5;
}

.modal .section[b-h3tric9hkz] {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

    .modal .section:last-child[b-h3tric9hkz] {
        border-bottom: none;
    }

.section-title[b-h3tric9hkz] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.report-content[b-h3tric9hkz] {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Delete Modal */
#deleteConfirmModal .modal-content[b-h3tric9hkz] {
    border-radius: 1rem;
    overflow: hidden;
}

#deleteConfirmModal .modal-header[b-h3tric9hkz] {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%);
    border: none;
    padding: 1.5rem;
}

#deleteConfirmModal .warning-icon[b-h3tric9hkz] {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#deleteConfirmModal .delete-icon[b-h3tric9hkz] {
    background-color: #fff2f2;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #f8d7da;
}

#deleteConfirmModal .report-details[b-h3tric9hkz] {
    border: 1px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .action-bar[b-h3tric9hkz] {
        flex-direction: column;
        gap: 1rem;
    }

        .action-bar .d-flex[b-h3tric9hkz] {
            flex-direction: column;
            align-items: stretch !important;
        }

    .search-box[b-h3tric9hkz] {
        min-width: auto;
        width: 100%;
    }

    .status-filter[b-h3tric9hkz] {
        min-width: auto;
    }

    .table-responsive[b-h3tric9hkz] {
        font-size: 0.875rem;
    }

    .btn-group[b-h3tric9hkz] {
        display: flex;
        justify-content: center;
    }
}

/* Badge Styling */
.badge[b-h3tric9hkz] {
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
}

/* Alert Animations */
.alert[b-h3tric9hkz] {
    animation: slideIn-b-h3tric9hkz 0.3s ease-out;
}

@keyframes slideIn-b-h3tric9hkz {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/YumBlazor/Components/Pages/Report_Pages/TreatmentReportDetail.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-jw7ifvtimg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-jw7ifvtimg] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
.section[b-jw7ifvtimg] {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.section:last-child[b-jw7ifvtimg] {
    border-bottom: none;
}

.section-title[b-jw7ifvtimg] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Value Boxes */
.vital-value[b-jw7ifvtimg], 
.behavior-value[b-jw7ifvtimg], 
.audit-value[b-jw7ifvtimg] {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    min-height: 2.5rem;
}

.report-details-box[b-jw7ifvtimg] {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    white-space: pre-wrap;
    min-height: 100px;
}

/* Print Styles */
@media print {
    .btn[b-jw7ifvtimg] {
        display: none !important;
    }
    
    .no-print[b-jw7ifvtimg] {
        display: none !important;
    }
    
    .card[b-jw7ifvtimg] {
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
    }
}
/* _content/YumBlazor/Components/Pages/Report_Pages/TreatmentReportList.razor.rz.scp.css */
.loading-overlay[b-nwv406tf0i] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-nwv406tf0i] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-header[b-nwv406tf0i] {
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.table th[b-nwv406tf0i] {
    background-color: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
}

.table tbody tr[b-nwv406tf0i] {
    transition: all 0.2s ease;
}

.table tbody tr:hover[b-nwv406tf0i] {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* _content/YumBlazor/Components/Pages/Report_Pages/TreatmentReportUpSet.razor.rz.scp.css */
.loading-overlay[b-pg8jplemao] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-pg8jplemao] {
    text-align: center;
}

.form-section[b-pg8jplemao] {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.section-title[b-pg8jplemao] {
    color: #495057;
    border-bottom: 2px solid #007bff;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.header-icon[b-pg8jplemao] {
    font-size: 1.5rem;
}

.image-upload-card[b-pg8jplemao] {
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    background-color: #f8f9fa;
}

.image-preview-container[b-pg8jplemao] {
    position: relative;
    margin-bottom: 0.5rem;
}

.image-placeholder[b-pg8jplemao] {
    border: 2px dashed #dee2e6;
    border-radius: 0.375rem;
}

.form-actions[b-pg8jplemao] {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.btn-lg[b-pg8jplemao] {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}
/* _content/YumBlazor/Components/Pages/Staff_Pages/PositionList.razor.rz.scp.css */
.position-page[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

/* Page Header */
.page-header[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.header-content[b-woe8i4cyw5] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon[b-woe8i4cyw5] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.page-title[b-woe8i4cyw5] {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.page-subtitle[b-woe8i4cyw5] {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.header-actions .btn-create[b-woe8i4cyw5] {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.header-actions .btn-create:hover[b-woe8i4cyw5] {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Tab buttons styling */
.btn-group .btn-create[b-woe8i4cyw5] {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px 0 0 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-group .btn-create:last-child[b-woe8i4cyw5] {
    border-radius: 0 25px 25px 0;
}

.btn-group .btn-create-active[b-woe8i4cyw5] {
    background: white;
    border: 2px solid white;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 25px 0 0 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-group .btn-create-active:last-child[b-woe8i4cyw5] {
    border-radius: 0 25px 25px 0;
}

.btn-group .btn-create:hover:not(.btn-create-active)[b-woe8i4cyw5] {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Cards */
.positions-card[b-woe8i4cyw5], .form-card[b-woe8i4cyw5] {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: none;
    backdrop-filter: blur(10px);
    overflow: hidden;
}


.card-header-modern[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-bottom: 2px solid #e3f2fd;
    padding: 1.5rem;
}

.header-info[b-woe8i4cyw5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title-modern[b-woe8i4cyw5] {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.position-count[b-woe8i4cyw5] {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-body-modern[b-woe8i4cyw5] {
    padding: 2rem;
}

/* Loading State */
.loading-state[b-woe8i4cyw5] {
    text-align: center;
    padding: 3rem 1rem;
}

.loading-spinner[b-woe8i4cyw5] {
    width: 3rem;
    height: 3rem;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin-b-woe8i4cyw5 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text[b-woe8i4cyw5] {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Empty State */
.empty-state[b-woe8i4cyw5] {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon[b-woe8i4cyw5] {
    font-size: 4rem;
    color: #dee2e6;
    margin-bottom: 1rem;
}

.empty-title[b-woe8i4cyw5] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-description[b-woe8i4cyw5] {
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Position Grid */
.positions-grid[b-woe8i4cyw5] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.position-card[b-woe8i4cyw5] {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.position-card:hover[b-woe8i4cyw5] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.position-header[b-woe8i4cyw5] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.position-name[b-woe8i4cyw5] {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
}

.position-name-en[b-woe8i4cyw5] {
    color: #6c757d;
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
}

.status-badge[b-woe8i4cyw5] {
    padding: 0.3rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.status-active[b-woe8i4cyw5] {
    background: #d4edda;
    color: #155724;
}

.status-inactive[b-woe8i4cyw5] {
    background: #f8d7da;
    color: #721c24;
}

.position-description[b-woe8i4cyw5] {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.position-meta[b-woe8i4cyw5] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.meta-item[b-woe8i4cyw5] {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #6c757d;
}

.position-actions[b-woe8i4cyw5] {
    display: flex;
    gap: 0.5rem;
}

.btn-edit[b-woe8i4cyw5], .btn-delete[b-woe8i4cyw5] {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-edit[b-woe8i4cyw5] {
    background: #e3f2fd;
    color: #1976d2;
}

.btn-edit:hover[b-woe8i4cyw5] {
    background: #1976d2;
    color: white;
    transform: translateY(-1px);
}

.btn-delete[b-woe8i4cyw5] {
    background: #ffebee;
    color: #d32f2f;
}

.btn-delete:hover[b-woe8i4cyw5] {
    background: #d32f2f;
    color: white;
    transform: translateY(-1px);
}

/* Form Styling */
.form-card[b-woe8i4cyw5] {
    position: sticky;
    top: 2rem;
}

.form-header[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 1.5rem;
}

.form-title[b-woe8i4cyw5] {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.form-body[b-woe8i4cyw5] {
    padding: 2rem;
}

.form-group[b-woe8i4cyw5] {
    margin-bottom: 1.5rem;
}

.form-label-modern[b-woe8i4cyw5] {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.required[b-woe8i4cyw5] {
    color: #e74c3c;
}

.form-control-modern[b-woe8i4cyw5] {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control-modern:focus[b-woe8i4cyw5] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
    outline: none;
}

.form-text[b-woe8i4cyw5] {
    color: #6c757d;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Custom Checkbox */
.form-check-modern[b-woe8i4cyw5] {
    position: relative;
    margin-bottom: 0.5rem;
}

.form-check-input-modern[b-woe8i4cyw5] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-check-label-modern[b-woe8i4cyw5] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
}

.checkmark[b-woe8i4cyw5] {
    width: 20px;
    height: 20px;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.form-check-input-modern:checked + .form-check-label-modern .checkmark[b-woe8i4cyw5] {
    background: #667eea;
    border-color: #667eea;
}

.form-check-input-modern:checked + .form-check-label-modern .checkmark[b-woe8i4cyw5]::after {
    content: '\f633';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
}

/* Form Actions */
.form-actions[b-woe8i4cyw5] {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-primary-modern[b-woe8i4cyw5], .btn-secondary-modern[b-woe8i4cyw5], .btn-danger-modern[b-woe8i4cyw5] {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-primary-modern[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary-modern:hover[b-woe8i4cyw5] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary-modern[b-woe8i4cyw5] {
    background: #6c757d;
    color: white;
}

.btn-secondary-modern:hover[b-woe8i4cyw5] {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-danger-modern[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.btn-danger-modern:hover[b-woe8i4cyw5] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

/* Modal Styling */
.modal-overlay[b-woe8i4cyw5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    backdrop-filter: blur(5px);
}

.modal-modern[b-woe8i4cyw5] {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    animation: modalSlideIn-b-woe8i4cyw5 0.3s ease-out;
}

.modal-header-modern[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e3f2fd;
}

.modal-title-modern[b-woe8i4cyw5] {
    margin: 0;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.modal-close[b-woe8i4cyw5] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover[b-woe8i4cyw5] {
    color: #2c3e50;
}

.modal-body-modern[b-woe8i4cyw5] {
    padding: 2rem;
}

.delete-warning[b-woe8i4cyw5] {
    display: flex;
    gap: 1rem;
}

.warning-icon[b-woe8i4cyw5] {
    font-size: 3rem;
    color: #f39c12;
}

.warning-text[b-woe8i4cyw5] {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.position-details[b-woe8i4cyw5] {
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 0.5rem 0;
}

.warning-note[b-woe8i4cyw5] {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0.5rem 0 0 0;
}

.modal-footer-modern[b-woe8i4cyw5] {
    padding: 1.5rem;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    border-top: 1px solid #e9ecef;
}

/* Alert Styling */
.alert-modern[b-woe8i4cyw5] {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 500;
    animation: slideInDown-b-woe8i4cyw5 0.3s ease-out;
}

/* Validation */
.validation-summary[b-woe8i4cyw5] {
    background: #f8d7da;
    color: #721c24;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.validation-message[b-woe8i4cyw5] {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Button Spinner */
.btn-spinner[b-woe8i4cyw5] {
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin-b-woe8i4cyw5 1s linear infinite;
    margin-right: 0.5rem;
}

/* Animations */
@keyframes spin-b-woe8i4cyw5 {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideInDown-b-woe8i4cyw5 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideIn-b-woe8i4cyw5 {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Filter Section */
.filter-section[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    border-bottom: 2px solid #e3f2fd;
    padding: 1.5rem;
}

.search-container[b-woe8i4cyw5] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-input-group[b-woe8i4cyw5] {
    position: relative;
    max-width: 400px;
}

.search-icon[b-woe8i4cyw5] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 1rem;
    z-index: 2;
}

.search-input[b-woe8i4cyw5] {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus[b-woe8i4cyw5] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.clear-search[b-woe8i4cyw5] {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: #6c757d;
    border: none;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-search:hover[b-woe8i4cyw5] {
    background: #495057;
    transform: translateY(-50%) scale(1.1);
}

.filter-toggles[b-woe8i4cyw5] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-toggle[b-woe8i4cyw5] {
    position: relative;
}

.filter-toggle input[type="radio"][b-woe8i4cyw5] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.filter-label[b-woe8i4cyw5] {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    font-size: 0.9rem;
}

.filter-toggle input[type="radio"]:checked + .filter-label[b-woe8i4cyw5] {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.filter-toggle:hover .filter-label[b-woe8i4cyw5] {
    border-color: #667eea;
    transform: translateY(-1px);
}

.filter-summary[b-woe8i4cyw5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.filter-text[b-woe8i4cyw5] {
    color: #495057;
    font-size: 0.9rem;
}

.btn-clear-filters[b-woe8i4cyw5] {
    background: #dc3545;
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-clear-filters:hover[b-woe8i4cyw5] {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Search Highlighting */
.search-highlight[b-woe8i4cyw5] {
    background: #fff3cd;
    color: #856404;
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-weight: 600;
}

/* Empty state for filtered results */
.empty-state .btn-outline-primary[b-woe8i4cyw5] {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.empty-state .btn-outline-primary:hover[b-woe8i4cyw5] {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .positions-grid[b-woe8i4cyw5] {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header[b-woe8i4cyw5] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .positions-grid[b-woe8i4cyw5] {
        grid-template-columns: 1fr;
    }
    
    .form-card[b-woe8i4cyw5] {
        position: static;
        margin-top: 2rem;
    }
    
    .position-page[b-woe8i4cyw5] {
        padding: 1rem 0;
    }
    
    .search-container[b-woe8i4cyw5] {
        gap: 0.75rem;
    }
    
    .search-input-group[b-woe8i4cyw5] {
        max-width: 100%;
    }
    
    .filter-summary[b-woe8i4cyw5] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .filter-toggles[b-woe8i4cyw5] {
        gap: 0.5rem;
    }
    
    .filter-label[b-woe8i4cyw5] {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .header-content[b-woe8i4cyw5] {
        flex-direction: column;
        text-align: center;
    }
    
    .page-title[b-woe8i4cyw5] {
        font-size: 1.5rem;
    }
    
    .form-actions[b-woe8i4cyw5] {
        flex-direction: column;
    }
    
    .btn-primary-modern[b-woe8i4cyw5], .btn-secondary-modern[b-woe8i4cyw5] {
        width: 100%;
        justify-content: center;
    }
    
    .filter-section[b-woe8i4cyw5] {
        padding: 1rem;
    }
    
    .filter-toggles[b-woe8i4cyw5] {
        justify-content: center;
    }
}

/* Rights Section Integration */
.rights-section[b-woe8i4cyw5] {
    margin-top: 0;
    padding: 0;
}

/* Override some RightManager styles to match PositionList design */
.rights-section .treatment-rights-manager[b-woe8i4cyw5] {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

.rights-section .manager-header[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

/* Tab button styling for the rights tab */
.btn-create-active:has(i.bi-shield-check)[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

.btn-create:has(i.bi-shield-check):hover[b-woe8i4cyw5] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
}

/* Ensure proper spacing for the rights component */
.rights-section .treatment-rights-manager > *[b-woe8i4cyw5] {
    margin-bottom: 1.5rem;
}

.rights-section .treatment-rights-manager > *:last-child[b-woe8i4cyw5] {
    margin-bottom: 0;
}

/* Responsive adjustments for rights tab */
@media (max-width: 768px) {
    .header-actions .btn-group[b-woe8i4cyw5] {
        flex-direction: column;
        width: 100%;
    }
    
    .header-actions .btn-group .btn[b-woe8i4cyw5] {
        border-radius: 8px !important;
        margin-bottom: 0.5rem;
    }
    
    .header-actions .btn-group .btn:last-child[b-woe8i4cyw5] {
        margin-bottom: 0;
    }
}

/* Integration styling to match existing theme */
.rights-section .info-card[b-woe8i4cyw5],
.rights-section .positions-card[b-woe8i4cyw5] {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}



.rights-section .table-responsive[b-woe8i4cyw5] {
    border-radius: 15px;
    overflow: hidden;
}

.rights-section .search-section[b-woe8i4cyw5] {
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
/* _content/YumBlazor/Components/Pages/Staff_Pages/StaffListPage.razor.rz.scp.css */
umBlazor\Components\Pages\Staff_Pages\StaffListPage.razor.css
/* Page Header */
.page-header[b-l8dwxamrk7] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Card Styling */
.card[b-l8dwxamrk7] {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: none;
    margin-bottom: 1.5rem;
}

.card-header[b-l8dwxamrk7] {
    border-radius: 10px 10px 0 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

/* Table Styling */
.table[b-l8dwxamrk7] {
    margin-bottom: 0;
}

    .table th[b-l8dwxamrk7] {
        background-color: #f8f9fa;
        font-weight: 600;
        border-bottom: 2px solid #dee2e6;
        padding: 1rem;
    }

    .table td[b-l8dwxamrk7] {
        padding: 1rem;
        vertical-align: middle;
    }

.table-hover tbody tr:hover[b-l8dwxamrk7] {
    background-color: rgba(102, 126, 234, 0.05);
}

.table-primary[b-l8dwxamrk7] {
    background-color: rgba(102, 126, 234, 0.1) !important;
}

/* Staff Cards */
.card h-100[b-l8dwxamrk7] {
    transition: all 0.2s ease;
    cursor: pointer;
}

    .card h-100:hover[b-l8dwxamrk7] {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

.border-primary[b-l8dwxamrk7] {
    border-color: #667eea !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Staff Avatar */
.staff-avatar img[b-l8dwxamrk7] {
    border: 2px solid #e9ecef;
}

.avatar-placeholder[b-l8dwxamrk7] {
    border: 2px solid #e9ecef;
}

/* Quick Actions */
.btn-group .btn[b-l8dwxamrk7] {
    border-radius: 8px 0 0 8px;
}

    .btn-group .btn:last-child[b-l8dwxamrk7] {
        border-radius: 0 8px 8px 0;
    }

/* Badges */
.badge[b-l8dwxamrk7] {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* Modal Styling */
.modal.show[b-l8dwxamrk7] {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content[b-l8dwxamrk7] {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header[b-l8dwxamrk7] {
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid #dee2e6;
}

/* Loading States */
.spinner-border[b-l8dwxamrk7] {
    color: #667eea;
}

/* Pagination */
.pagination-sm .page-link[b-l8dwxamrk7] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 6px;
    margin: 0 2px;
}

.pagination-sm .page-item.active .page-link[b-l8dwxamrk7] {
    background-color: #667eea;
    border-color: #667eea;
}

/* Empty State */
.display-1[b-l8dwxamrk7] {
    font-size: 4rem;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header[b-l8dwxamrk7] {
        padding: 1rem;
        text-align: center;
    }

        .page-header .d-flex[b-l8dwxamrk7] {
            flex-direction: column;
            gap: 1rem;
        }

    .btn-group[b-l8dwxamrk7] {
        flex-direction: column;
    }

        .btn-group .btn[b-l8dwxamrk7] {
            border-radius: 8px !important;
            margin-bottom: 0.25rem;
        }

    .table-responsive[b-l8dwxamrk7] {
        font-size: 0.875rem;
    }

    .card .d-flex.gap-1[b-l8dwxamrk7] {
        flex-direction: column;
    }

        .card .d-flex.gap-1 .btn[b-l8dwxamrk7] {
            margin-bottom: 0.25rem;
        }
}

/* Animation */
@keyframes fadeIn-b-l8dwxamrk7 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card[b-l8dwxamrk7] {
    animation: fadeIn-b-l8dwxamrk7 0.3s ease;
}

/* Button Enhancements */
.btn[b-l8dwxamrk7] {
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn:hover[b-l8dwxamrk7] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.btn-lg[b-l8dwxamrk7] {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Alert Styling */
.alert[b-l8dwxamrk7] {
    border-radius: 10px;
    border: none;
}

.alert-warning[b-l8dwxamrk7] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
}
/* _content/YumBlazor/Components/Pages/Staff_Pages/StaffUpSet.razor.rz.scp.css */
/* Loading Overlay */
.loading-overlay[b-p7becnqbbv] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-p7becnqbbv] {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header Styling */
.header-icon[b-p7becnqbbv] {
    font-size: 1.5rem;
}

/* Form Sections */
.form-section[b-p7becnqbbv] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.section-title[b-p7becnqbbv] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Form Controls */
.form-control[b-p7becnqbbv],
.form-select[b-p7becnqbbv] {
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

    .form-control:focus[b-p7becnqbbv],
    .form-select:focus[b-p7becnqbbv] {
        border-color: #007bff;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

/* Image Upload */
.image-preview-container[b-p7becnqbbv] {
    position: relative;
}

.image-placeholder[b-p7becnqbbv] {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
}

    .image-placeholder:hover[b-p7becnqbbv] {
        border-color: #007bff;
        background-color: #f8f9fa;
    }

/* Document Upload Cards */
.document-upload-card[b-p7becnqbbv] {
    background: white;
    transition: all 0.3s ease;
    height: 100%;
}

    .document-upload-card:hover[b-p7becnqbbv] {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.document-preview[b-p7becnqbbv] {
    position: relative;
}

.document-placeholder[b-p7becnqbbv] {
    border: 2px dashed #dee2e6;
    min-height: 120px;
    transition: all 0.3s ease;
}

    .document-placeholder:hover[b-p7becnqbbv] {
        border-color: #007bff;
        background-color: #f0f8ff !important;
    }

.pdf-preview[b-p7becnqbbv] {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Form Actions */
.form-actions[b-p7becnqbbv] {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 3px solid #007bff;
    margin-top: 2rem;
}

/* Button Improvements */
.btn[b-p7becnqbbv] {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .btn:hover[b-p7becnqbbv] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

.btn-success[b-p7becnqbbv] {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
}

.btn-warning[b-p7becnqbbv] {
    background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
    border: none;
    color: #212529;
}

/* Alert Styling */
.alert[b-p7becnqbbv] {
    border-radius: 10px;
    border: none;
    animation: slideIn-b-p7becnqbbv 0.3s ease-out;
}

@keyframes slideIn-b-p7becnqbbv {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-section[b-p7becnqbbv] {
        padding: 1rem;
    }

    .form-actions[b-p7becnqbbv] {
        padding: 1rem;
    }

        .form-actions .d-flex[b-p7becnqbbv] {
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-actions .btn[b-p7becnqbbv] {
            width: 100%;
        }

    .image-preview-container img[b-p7becnqbbv],
    .image-placeholder[b-p7becnqbbv] {
        max-height: 200px !important;
    }

    .document-upload-card[b-p7becnqbbv] {
        margin-bottom: 1rem;
    }
}

/* Card Styling */
.card[b-p7becnqbbv] {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.card-header[b-p7becnqbbv] {
    border: none;
    padding: 1.5rem;
}

.card-body[b-p7becnqbbv] {
    background: white;
}

/* Input Group Enhancements */
small.text-muted[b-p7becnqbbv] {
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: inline-block;
}

/* Loading States */
.spinner-border-sm[b-p7becnqbbv] {
    width: 1rem;
    height: 1rem;
}

/* Focus States */
.btn:focus[b-p7becnqbbv],
.form-control:focus[b-p7becnqbbv],
.form-select:focus[b-p7becnqbbv] {
    outline: none;
}

/* Disabled States */
.btn:disabled[b-p7becnqbbv] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

    .btn:disabled:hover[b-p7becnqbbv] {
        transform: none;
        box-shadow: none;
    }

/* File Input Styling */
input[type="file"][b-p7becnqbbv]::file-selector-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    margin-right: 1rem;
}

    input[type="file"][b-p7becnqbbv]::file-selector-button:hover {
        background-color: #0056b3;
    }

.form-control-sm[b-p7becnqbbv]::file-selector-button {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

Set.razor.css
/* Audit Information Section */
.audit-section[b-p7becnqbbv] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
}

.audit-section .section-title[b-p7becnqbbv] {
    color: #495057;
    border-bottom-color: #adb5bd;
}

.audit-info-box[b-p7becnqbbv] {
    min-height: 65px;
    transition: all 0.3s ease;
}

    .audit-info-box:hover[b-p7becnqbbv] {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .audit-info-box code[b-p7becnqbbv] {
        font-size: 0.8rem;
        background-color: #e7f3ff;
        padding: 0.35rem 0.65rem;
        border-radius: 6px;
        border: 1px solid #bee5eb;
        font-family: 'Courier New', monospace;
    }

.user-avatar[b-p7becnqbbv] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.bg-gradient-primary[b-p7becnqbbv] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.user-select-all[b-p7becnqbbv] {
    user-select: all;
    cursor: pointer;
}

.audit-section .alert-info[b-p7becnqbbv] {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.audit-section .alert-light[b-p7becnqbbv] {
    background-color: #ffffff;
    border-color: #dee2e6;
}

/* Icon styling in audit section */
.audit-info-box i.text-primary[b-p7becnqbbv] {
    color: #007bff !important;
}

.audit-info-box i.text-warning[b-p7becnqbbv] {
    color: #ffc107 !important;
}

.audit-info-box i.text-success[b-p7becnqbbv] {
    color: #28a745 !important;
}

.audit-info-box i.text-info[b-p7becnqbbv] {
    color: #17a2b8 !important;
}

/* Responsive adjustments for audit section */
@media (max-width: 768px) {
    .audit-info-box[b-p7becnqbbv] {
        font-size: 0.875rem;
        min-height: 55px;
    }

    .user-avatar[b-p7becnqbbv] {
        width: 35px !important;
        height: 35px !important;
    }

    .audit-info-box code[b-p7becnqbbv] {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .audit-info-box i.fs-4[b-p7becnqbbv] {
        font-size: 1.2rem !important;
    }
}

/* Animation for audit section */
@keyframes fadeInUp-b-p7becnqbbv {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audit-section[b-p7becnqbbv] {
    animation: fadeInUp-b-p7becnqbbv 0.5s ease-out;
}
/* _content/YumBlazor/Components/Pages/Supplier/EditSupplier.razor.rz.scp.css */
/* Scoped styles for a cleaner form */

.required .form-label[b-vr2w8m0bnt]::after {
    content: " *";
    color: var(--bs-danger);
    font-weight: 600;
}

.validation-message[b-vr2w8m0bnt],
.validation-message:where(span)[b-vr2w8m0bnt] {
    color: var(--bs-danger);
    font-size: .875rem;
}

/* Keep action buttons visible near the bottom while scrolling long forms */
.form-actions[b-vr2w8m0bnt] {
    position: sticky;
    bottom: 0;
    background-color: var(--bs-body-bg);
    border-top: 1px solid var(--bs-border-color);
    padding: .75rem 0;
    z-index: 1;
}

/* Subtle spacing inside the card body */
.card-body[b-vr2w8m0bnt] {
    padding-top: 1rem;
    padding-bottom: .5rem;
}

/* Main container and card styling */
.supplier-form-card[b-vr2w8m0bnt] {
    border-radius: 1rem;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header styling */
.supplier-header[b-vr2w8m0bnt] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.header-icon[b-vr2w8m0bnt] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Loading overlay */
.loading-overlay[b-vr2w8m0bnt] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-vr2w8m0bnt] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Form container */
.form-container[b-vr2w8m0bnt] {
    padding: 2rem;
}

/* Form sections */
.form-section[b-vr2w8m0bnt] {
    background: white;
    border-radius: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--bs-border-color);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.form-section:hover[b-vr2w8m0bnt] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.section-header[b-vr2w8m0bnt] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bs-border-color);
}

.section-title[b-vr2w8m0bnt] {
    margin: 0;
    color: var(--bs-gray-700);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.section-content[b-vr2w8m0bnt] {
    padding: 1.5rem;
}

/* Form controls */
.form-control[b-vr2w8m0bnt], .form-select[b-vr2w8m0bnt] {
    border-radius: 0.75rem;
    border: 2px solid var(--bs-border-color);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus[b-vr2w8m0bnt], .form-select:focus[b-vr2w8m0bnt] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-control-lg[b-vr2w8m0bnt] {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
}

.form-floating > label[b-vr2w8m0bnt] {
    font-weight: 500;
    color: var(--bs-gray-600);
}

.form-floating > .form-control:focus ~ label[b-vr2w8m0bnt],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-vr2w8m0bnt] {
    color: #667eea;
    font-weight: 600;
}

/* Required field styling */
.form-floating > label[b-vr2w8m0bnt]::after {
    content: " *";
    color: var(--bs-danger);
    font-weight: 600;
}

/* Validation messages */
.text-danger.small[b-vr2w8m0bnt] {
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.alert[b-vr2w8m0bnt] {
    border-radius: 0.75rem;
    border: none;
    font-weight: 500;
}

.alert-danger[b-vr2w8m0bnt] {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* Form actions */
.form-actions[b-vr2w8m0bnt] {
    background: var(--bs-gray-50);
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--bs-border-color);
    margin: 0 -2rem -2rem -2rem;
}

/* Button styling */
.btn[b-vr2w8m0bnt] {
    border-radius: 0.75rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-lg[b-vr2w8m0bnt] {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary[b-vr2w8m0bnt] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover[b-vr2w8m0bnt] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline-secondary[b-vr2w8m0bnt] {
    border: 2px solid var(--bs-gray-300);
    color: var(--bs-gray-600);
}

.btn-outline-secondary:hover[b-vr2w8m0bnt] {
    background: var(--bs-gray-600);
    border-color: var(--bs-gray-600);
    transform: translateY(-1px);
}

.btn-outline-danger[b-vr2w8m0bnt] {
    border: 2px solid var(--bs-danger);
    color: var(--bs-danger);
}

.btn-outline-danger:hover[b-vr2w8m0bnt] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: transparent;
    transform: translateY(-1px);
}

/* Section icons */
.section-title i[b-vr2w8m0bnt] {
    color: #667eea;
    font-size: 1.2rem;
}

/* Input group styling for better visual hierarchy */
.form-floating[b-vr2w8m0bnt] {
    position: relative;
}

.form-floating .form-control[b-vr2w8m0bnt] {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    padding: 1rem 0.75rem;
}

.form-floating textarea.form-control[b-vr2w8m0bnt] {
    height: auto;
    min-height: calc(3.5rem + 2px);
}

/* Responsive design */
@media (max-width: 768px) {
    .supplier-header[b-vr2w8m0bnt] {
        padding: 1rem;
    }
    
    .header-icon[b-vr2w8m0bnt] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .form-container[b-vr2w8m0bnt] {
        padding: 1rem;
    }
    
    .section-content[b-vr2w8m0bnt] {
        padding: 1rem;
    }
    
    .form-actions[b-vr2w8m0bnt] {
        padding: 1rem;
        margin: 0 -1rem -1rem -1rem;
    }
    
    .form-actions .d-flex[b-vr2w8m0bnt] {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .form-actions .btn[b-vr2w8m0bnt] {
        width: 100%;
    }
    
    .section-title[b-vr2w8m0bnt] {
        font-size: 1rem;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-vr2w8m0bnt {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.supplier-form-card[b-vr2w8m0bnt] {
    animation: fadeInUp-b-vr2w8m0bnt 0.6s ease forwards;
}

.form-section[b-vr2w8m0bnt] {
    animation: fadeInUp-b-vr2w8m0bnt 0.6s ease forwards;
}

.form-section:nth-child(2)[b-vr2w8m0bnt] {
    animation-delay: 0.1s;
}

.form-section:nth-child(3)[b-vr2w8m0bnt] {
    animation-delay: 0.2s;
}

.form-section:nth-child(4)[b-vr2w8m0bnt] {
    animation-delay: 0.3s;
}

.form-section:nth-child(5)[b-vr2w8m0bnt] {
    animation-delay: 0.4s;
}

/* Focus states for accessibility */
.form-control:focus[b-vr2w8m0bnt] {
    outline: none;
}

.btn:focus[b-vr2w8m0bnt] {
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.5);
}

/* Enhanced floating labels */
.form-floating > .form-control:focus ~ label[b-vr2w8m0bnt],
.form-floating > .form-control:not(:placeholder-shown) ~ label[b-vr2w8m0bnt],
.form-floating > .form-select ~ label[b-vr2w8m0bnt] {
    opacity: 0.85;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Custom textarea styling */
textarea.form-control[b-vr2w8m0bnt] {
    resize: vertical;
    min-height: 100px;
}

/* Success state styling */
.form-control.is-valid[b-vr2w8m0bnt] {
    border-color: #28a745;
}

.form-control.is-invalid[b-vr2w8m0bnt] {
    border-color: #dc3545;
}

/* Loading state for buttons */
.btn:disabled[b-vr2w8m0bnt] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced section visual separation */
.form-section + .form-section[b-vr2w8m0bnt] {
    margin-top: 1.5rem;
}

/* Better spacing for form rows */
.section-content .row[b-vr2w8m0bnt] {
    margin: 0;
}

.section-content .row > *[b-vr2w8m0bnt] {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
/* _content/YumBlazor/Components/Pages/Supplier/SupplierList.razor.rz.scp.css */
/* Scoped styling for SupplierList */

.supplier-grid[b-i1xbjv767s] {
  /* Keep the grid in view with scroll when large */
  max-height: 70vh;
  overflow: auto;
  font-size: .9375rem;
}

/* Make the QuickGrid table look closer to Bootstrap */
.supplier-grid table[b-i1xbjv767s] {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

/* Sticky header */
.supplier-grid thead th[b-i1xbjv767s] {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--bs-body-bg);
  border-bottom: 1px solid var(--bs-border-color);
}

/* Compact cell spacing with divider lines */
.supplier-grid th[b-i1xbjv767s],
.supplier-grid td[b-i1xbjv767s] {
  padding: .5rem .75rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--bs-border-color);
}

/* Zebra striping and hover state */
.supplier-grid tbody tr:nth-child(even) td[b-i1xbjv767s] {
  background-color: rgba(var(--bs-primary-rgb), .02);
}

.supplier-grid tbody tr:hover td[b-i1xbjv767s] {
  background-color: rgba(var(--bs-primary-rgb), .08);
}

/* Rounded header corners inside the card */
.supplier-grid thead th:first-child[b-i1xbjv767s] {
  border-top-left-radius: .5rem;
}
.supplier-grid thead th:last-child[b-i1xbjv767s] {
  border-top-right-radius: .5rem;
}

/* Keep action buttons tidy */
.supplier-grid td .d-flex.gap-1[b-i1xbjv767s] {
  white-space: nowrap;
}

/* Main container and card styling */
.supplier-list-card[b-i1xbjv767s] {
    border-radius: 1rem;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header styling */
.supplier-header[b-i1xbjv767s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem 2rem;
}

.header-icon[b-i1xbjv767s] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.header-stats .badge[b-i1xbjv767s] {
    font-weight: 500;
    border-radius: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Loading overlay */
.loading-overlay[b-i1xbjv767s] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content[b-i1xbjv767s] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Table actions */
.table-actions[b-i1xbjv767s] {
    background: var(--bs-gray-50) !important;
}

.search-group .form-control:focus[b-i1xbjv767s] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.add-supplier-btn[b-i1xbjv767s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-supplier-btn:hover[b-i1xbjv767s] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Table styling */
.supplier-grid[b-i1xbjv767s] {
    max-height: 70vh;
    overflow: auto;
    font-size: 0.95rem;
}

.supplier-table[b-i1xbjv767s] {
    margin: 0;
}

.supplier-table thead[b-i1xbjv767s] {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--bs-gray-100);
}

.supplier-table th[b-i1xbjv767s] {
    background: var(--bs-gray-100);
    border-bottom: 2px solid var(--bs-border-color);
    font-weight: 600;
    color: var(--bs-gray-700);
    padding: 1rem;
    white-space: nowrap;
}

.supplier-table td[b-i1xbjv767s] {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--bs-border-color);
}

.supplier-table tbody tr[b-i1xbjv767s] {
    transition: all 0.2s ease;
}

.supplier-table tbody tr:hover[b-i1xbjv767s] {
    background-color: rgba(102, 126, 234, 0.05);
    transform: translateX(2px);
}

/* Column specific styling */
.business-name-column[b-i1xbjv767s] {
    min-width: 250px;
}

.contact-column[b-i1xbjv767s] {
    min-width: 200px;
}

.email-column[b-i1xbjv767s] {
    min-width: 220px;
}

.location-column[b-i1xbjv767s] {
    min-width: 200px;
}

.actions-column[b-i1xbjv767s] {
    min-width: 120px;
    text-align: center;
}

/* Supplier avatar */
.supplier-avatar[b-i1xbjv767s] {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Email link styling */
.email-link[b-i1xbjv767s] {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.email-link:hover[b-i1xbjv767s] {
    color: #764ba2;
    text-decoration: underline;
}

/* Location info */
.location-info[b-i1xbjv767s] {
    max-width: 200px;
}

.location-info .text-truncate[b-i1xbjv767s] {
    max-width: 100%;
}

/* Action buttons */
.action-buttons[b-i1xbjv767s] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.action-buttons .btn[b-i1xbjv767s] {
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
}

.action-buttons .btn:hover[b-i1xbjv767s] {
    transform: translateY(-1px);
}

.btn-outline-primary:hover[b-i1xbjv767s] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-color: transparent;
}

.btn-outline-danger:hover[b-i1xbjv767s] {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-color: transparent;
}

/* Empty state */
.empty-state[b-i1xbjv767s] {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-icon[b-i1xbjv767s] {
    width: 80px;
    height: 80px;
    background: var(--bs-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--bs-gray-400);
    margin: 0 auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .supplier-header[b-i1xbjv767s] {
        padding: 1rem;
    }
    
    .header-icon[b-i1xbjv767s] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .table-actions[b-i1xbjv767s] {
        padding: 1rem !important;
    }
    
    .table-actions .row[b-i1xbjv767s] {
        gap: 1rem;
    }
    
    .table-actions .col-md-6[b-i1xbjv767s] {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .supplier-grid[b-i1xbjv767s] {
        font-size: 0.875rem;
    }
    
    .supplier-table th[b-i1xbjv767s],
    .supplier-table td[b-i1xbjv767s] {
        padding: 0.75rem 0.5rem;
    }
    
    .supplier-avatar[b-i1xbjv767s] {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .action-buttons[b-i1xbjv767s] {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .action-buttons .btn[b-i1xbjv767s] {
        font-size: 0.875rem;
        padding: 0.375rem 0.75rem;
        width: 100%;
    }
    
    /* Hide less important columns on mobile */
    .location-column[b-i1xbjv767s] {
        display: none;
    }
}

@media (max-width: 576px) {
    .contact-column[b-i1xbjv767s] {
        display: none;
    }
    
    .business-name-column[b-i1xbjv767s] {
        min-width: 200px;
    }
}

/* Animation for page load */
@keyframes fadeInUp-b-i1xbjv767s {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.supplier-list-card[b-i1xbjv767s] {
    animation: fadeInUp-b-i1xbjv767s 0.6s ease forwards;
}

/* Scrollbar styling */
.supplier-grid[b-i1xbjv767s]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.supplier-grid[b-i1xbjv767s]::-webkit-scrollbar-track {
    background: var(--bs-gray-100);
    border-radius: 4px;
}

.supplier-grid[b-i1xbjv767s]::-webkit-scrollbar-thumb {
    background: var(--bs-gray-400);
    border-radius: 4px;
}

.supplier-grid[b-i1xbjv767s]::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-500);
}

/* QuickGrid specific styling */
.supplier-table .quickgrid[b-i1xbjv767s] {
    border: none;
}

.supplier-table .quickgrid-headerrow[b-i1xbjv767s] {
    background: var(--bs-gray-100);
}

.supplier-table .col-sort-button[b-i1xbjv767s] {
    background: none;
    border: none;
    color: inherit;
    font-weight: inherit;
}

.supplier-table .col-sort-button:hover[b-i1xbjv767s] {
    background: rgba(0, 0, 0, 0.05);
}

/* Pagination styling */
.supplier-table .pagination[b-i1xbjv767s] {
    margin: 0;
    padding: 1rem;
    justify-content: center;
}

.supplier-table .pagination .page-link[b-i1xbjv767s] {
    border-radius: 0.5rem;
    margin: 0 0.25rem;
    border: 1px solid var(--bs-border-color);
}

.supplier-table .pagination .page-item.active .page-link[b-i1xbjv767s] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
}
/* _content/YumBlazor/Components/Shared/CasePickup.razor.rz.scp.css */
/* Case Pickup Container */
.case-pickup-container[b-ecjb98ehw0] {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1rem;
    background: #f8f9fa;
}

.pickup-header h6[b-ecjb98ehw0] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0;
}

/* Search Section */
.search-section[b-ecjb98ehw0] {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.search-input[b-ecjb98ehw0] {
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.9rem;
}

.search-input:focus[b-ecjb98ehw0] {
    border-color: #198754;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Case List */
.case-list-container[b-ecjb98ehw0] {
    max-height: 500px;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.case-list[b-ecjb98ehw0] {
    padding: 0.5rem;
}

.case-item[b-ecjb98ehw0] {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
    background: #fff;
}

.case-item:hover[b-ecjb98ehw0] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateX(2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.case-item.selected[b-ecjb98ehw0] {
    background-color: #d4edda;
    border-color: #198754;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.2);
}

/* Case Icon */
.case-icon[b-ecjb98ehw0] {
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.case-status-indicator[b-ecjb98ehw0] {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.case-status-indicator.case-pending[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #ffc107, #ffcd39);
    color: #212529;
}

.case-status-indicator.case-open[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #198754, #20c997);
    color: white;
}

.case-status-indicator.case-closed[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #6c757d, #adb5bd);
    color: white;
}

.case-status-indicator.case-cancelled[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: white;
}

.case-status-indicator.case-unknown[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #343a40, #495057);
    color: white;
}

/* Case Info */
.case-info[b-ecjb98ehw0] {
    flex-grow: 1;
    min-width: 0;
}

.case-header[b-ecjb98ehw0] {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.case-number[b-ecjb98ehw0] {
    font-weight: 600;
    font-size: 1.1rem;
    color: #198754;
}

.case-details[b-ecjb98ehw0] {
    line-height: 1.4;
}

.patient-info[b-ecjb98ehw0], .case-dates[b-ecjb98ehw0], .case-summary[b-ecjb98ehw0] {
    margin-bottom: 0.25rem;
}

.patient-info i[b-ecjb98ehw0], .case-dates i[b-ecjb98ehw0], .case-summary i[b-ecjb98ehw0] {
    color: #6c757d;
}

/* Badges */
.badge[b-ecjb98ehw0] {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

/* Selected Case Display */
.selected-case .alert[b-ecjb98ehw0] {
    margin-bottom: 0;
    border-radius: 8px;
    border: 1px solid #198754;
    background-color: #d4edda;
}

.selected-case-icon[b-ecjb98ehw0] {
    text-align: center;
}

/* Empty State */
.empty-state[b-ecjb98ehw0] {
    color: #6c757d;
}

.empty-state .display-6[b-ecjb98ehw0] {
    font-size: 3rem;
    opacity: 0.5;
}

/* Search Summary */
.search-summary[b-ecjb98ehw0] {
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    display: flex;
    justify-content: between;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .case-item[b-ecjb98ehw0] {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .case-icon[b-ecjb98ehw0] {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .case-header[b-ecjb98ehw0] {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

/* Scrollbar Styling */
.case-list-container[b-ecjb98ehw0]::-webkit-scrollbar {
    width: 6px;
}

.case-list-container[b-ecjb98ehw0]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.case-list-container[b-ecjb98ehw0]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.case-list-container[b-ecjb98ehw0]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Animation */
@keyframes fadeIn-b-ecjb98ehw0 {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-item[b-ecjb98ehw0] {
    animation: fadeIn-b-ecjb98ehw0 0.3s ease;
}

/* Alert Styling */
.alert[b-ecjb98ehw0] {
    border-radius: 10px;
    border: none;
}

.alert-info[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-left: 4px solid #17a2b8;
}

.alert-warning[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #ffc107;
}

.alert-success[b-ecjb98ehw0] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-left: 4px solid #198754;
}
/* _content/YumBlazor/Components/Shared/NotificationBell.razor.rz.scp.css */
/* Notification Bell Container */
.notification-bell-container[b-oyjmdrm9qt] {
    position: fixed;
    top: 20px;
    left: 20px; /* Changed from right to left */
    z-index: 1000;
}

/* Notification Bell Button */
.notification-bell-btn[b-oyjmdrm9qt] {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bell-btn:hover[b-oyjmdrm9qt] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.notification-bell-btn:active[b-oyjmdrm9qt] {
    transform: translateY(0);
}

/* Notification Badge */
.notification-badge[b-oyjmdrm9qt] {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: #dc3545;
    color: white;
    border-radius: 11px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
    animation: pulse-b-oyjmdrm9qt 2s infinite;
}

@keyframes pulse-b-oyjmdrm9qt {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Notification Panel */
.notification-panel[b-oyjmdrm9qt] {
    position: absolute;
    top: 60px;
    left: 0; /* Changed from right to left */
    width: 380px;
    max-height: 600px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    animation: slideInDown-b-oyjmdrm9qt 0.3s ease;
    border: 1px solid #e9ecef;
}

@keyframes slideInDown-b-oyjmdrm9qt {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification Header */
.notification-header[b-oyjmdrm9qt] {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px 12px 0 0;
}

.notification-title[b-oyjmdrm9qt] {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
}

.notification-actions[b-oyjmdrm9qt] {
    display: flex;
    gap: 0.5rem;
}

.btn-mark-read[b-oyjmdrm9qt],
.btn-close-panel[b-oyjmdrm9qt] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.btn-mark-read:hover[b-oyjmdrm9qt] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.btn-close-panel:hover[b-oyjmdrm9qt] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Notification List */
.notification-list[b-oyjmdrm9qt] {
    flex: 1;
    overflow-y: auto;
    max-height: 450px;
}

.notification-list[b-oyjmdrm9qt]::-webkit-scrollbar {
    width: 6px;
}

.notification-list[b-oyjmdrm9qt]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-list[b-oyjmdrm9qt]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.notification-list[b-oyjmdrm9qt]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Notification Item */
.notification-item[b-oyjmdrm9qt] {
    display: flex;
    align-items: flex-start;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f8f9fa;
    transition: background-color 0.2s ease;
    position: relative;
}

.notification-item:hover[b-oyjmdrm9qt] {
    background-color: #f8f9fa;
}

.notification-item.unread[b-oyjmdrm9qt] {
    background-color: rgba(102, 126, 234, 0.05);
    border-left: 3px solid #667eea;
}

.notification-item.read[b-oyjmdrm9qt] {
    opacity: 0.7;
}

/* Notification Icon */
.notification-icon[b-oyjmdrm9qt] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.notification-info .notification-icon[b-oyjmdrm9qt] {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.notification-success .notification-icon[b-oyjmdrm9qt] {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.notification-warning .notification-icon[b-oyjmdrm9qt] {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.notification-error .notification-icon[b-oyjmdrm9qt] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Notification Content */
.notification-content[b-oyjmdrm9qt] {
    flex: 1;
    cursor: pointer;
    min-width: 0;
}

.notification-item-header[b-oyjmdrm9qt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.25rem;
    gap: 0.5rem;
}

.notification-item-title[b-oyjmdrm9qt] {
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.4;
}

.notification-time[b-oyjmdrm9qt] {
    font-size: 0.75rem;
    color: #6c757d;
    white-space: nowrap;
}

.notification-message[b-oyjmdrm9qt] {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Remove Notification Button */
.btn-remove-notification[b-oyjmdrm9qt] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 0.25rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.btn-remove-notification:hover[b-oyjmdrm9qt] {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* Empty Notifications */
.empty-notifications[b-oyjmdrm9qt] {
    text-align: center;
    padding: 3rem 1rem;
    color: #6c757d;
}

.empty-notifications i[b-oyjmdrm9qt] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-notifications p[b-oyjmdrm9qt] {
    margin: 0;
    font-size: 0.9rem;
}

/* Notification Footer */
.notification-footer[b-oyjmdrm9qt] {
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid #f8f9fa;
}

.notification-footer-actions[b-oyjmdrm9qt] {
    padding: 1rem 1.25rem;
    border-top: 1px solid #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .notification-bell-container[b-oyjmdrm9qt] {
        top: 70px; /* Move down to avoid toggle menu */
        left: 15px;
    }
    
    .notification-panel[b-oyjmdrm9qt] {
        width: calc(100vw - 40px);
        max-width: 380px;
        left: -15px; /* Align with adjusted button position */
    }
}

@media (max-width: 640px) {
    .notification-bell-container[b-oyjmdrm9qt] {
        top: 80px; /* Move down more on smaller screens */
        left: 15px;
    }
    
    .notification-bell-btn[b-oyjmdrm9qt] {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .notification-panel[b-oyjmdrm9qt] {
        width: calc(100vw - 30px);
        left: -15px;
    }
}

@media (max-width: 480px) {
    .notification-bell-container[b-oyjmdrm9qt] {
        top: 75px; /* Position below toggle menu */
        left: 10px;
    }
    
    .notification-bell-btn[b-oyjmdrm9qt] {
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
    
    .notification-panel[b-oyjmdrm9qt] {
        width: calc(100vw - 20px);
        left: -10px;
        max-height: calc(100vh - 120px); /* Adjust for mobile viewport */
    }
    
    .notification-list[b-oyjmdrm9qt] {
        max-height: calc(100vh - 250px);
    }
}

/* Accessibility */
.notification-bell-btn:focus[b-oyjmdrm9qt],
.btn-mark-read:focus[b-oyjmdrm9qt],
.btn-close-panel:focus[b-oyjmdrm9qt],
.btn-remove-notification:focus[b-oyjmdrm9qt] {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}
/* _content/YumBlazor/Components/Shared/PatientPickup.razor.rz.scp.css */
/* Patient Pickup Container */
.patient-pickup-container[b-1inxwb6gng] {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1rem;
    background: #f8f9fa;
}

.pickup-header h6[b-1inxwb6gng] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0;
}

/* Search Section */
.search-section[b-1inxwb6gng] {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.search-input[b-1inxwb6gng] {
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.9rem;
}

.search-input:focus[b-1inxwb6gng] {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Patient List */
.patient-list-container[b-1inxwb6gng] {
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.patient-list[b-1inxwb6gng] {
    padding: 0.5rem;
}

.patient-item[b-1inxwb6gng] {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.patient-item:hover[b-1inxwb6gng] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateX(2px);
}

.patient-item.selected[b-1inxwb6gng] {
    background-color: #e7f3ff;
    border-color: #0d6efd;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

/* Patient Avatar */
.patient-avatar[b-1inxwb6gng] {
    position: relative;
    margin-right: 0.75rem;
}

.patient-avatar img[b-1inxwb6gng] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.avatar-placeholder[b-1inxwb6gng] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #e9ecef;
}

.status-indicator[b-1inxwb6gng] {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    border: 2px solid white;
}

.status-indicator.active[b-1inxwb6gng] {
    background-color: #198754;
}

/* Patient Info */
.patient-info[b-1inxwb6gng] {
    flex-grow: 1;
    min-width: 0;
}

.patient-name[b-1inxwb6gng] {
    font-weight: 600;
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.25rem;
}

.patient-details[b-1inxwb6gng],
.patient-contact[b-1inxwb6gng] {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.1rem;
}

.patient-details small[b-1inxwb6gng],
.patient-contact small[b-1inxwb6gng] {
    display: inline-block;
}

/* Patient Status */
.patient-status[b-1inxwb6gng] {
    flex-shrink: 0;
    text-align: center;
}

.patient-status .badge[b-1inxwb6gng] {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
}

.patient-age[b-1inxwb6gng] {
    font-size: 0.75rem;
}

/* Selected Patient Display */
.selected-patient .alert[b-1inxwb6gng] {
    margin-bottom: 0;
    border-radius: 8px;
    border: 1px solid #0d6efd;
    background-color: #e7f3ff;
}

.selected-avatar[b-1inxwb6gng],
.selected-avatar-placeholder[b-1inxwb6gng] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.selected-avatar[b-1inxwb6gng] {
    object-fit: cover;
    border: 2px solid #0d6efd;
}

.selected-avatar-placeholder[b-1inxwb6gng] {
    background: linear-gradient(135deg, #0d6efd 0%, #6610f2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    border: 2px solid #0d6efd;
}

/* Empty State */
.empty-state[b-1inxwb6gng] {
    color: #6c757d;
}

.empty-state .display-6[b-1inxwb6gng] {
    font-size: 3rem;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .patient-item[b-1inxwb6gng] {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .patient-avatar[b-1inxwb6gng] {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .patient-status[b-1inxwb6gng] {
        margin-top: 0.5rem;
    }
}

/* Scrollbar Styling */
.patient-list-container[b-1inxwb6gng]::-webkit-scrollbar {
    width: 6px;
}

.patient-list-container[b-1inxwb6gng]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.patient-list-container[b-1inxwb6gng]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.patient-list-container[b-1inxwb6gng]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
/* _content/YumBlazor/Components/Shared/RightManager.razor.rz.scp.css */
/* Treatment Rights Manager Styles */
.treatment-rights-manager[b-gr3f4dy9gm] {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Header Section */
.manager-header[b-gr3f4dy9gm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.header-icon[b-gr3f4dy9gm] {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Search Section */
.search-section[b-gr3f4dy9gm] {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.input-group-text[b-gr3f4dy9gm] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* Loading Section */
.loading-section[b-gr3f4dy9gm] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Table Styles */
.table-responsive[b-gr3f4dy9gm] {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.rights-table[b-gr3f4dy9gm] {
    margin-bottom: 0;
}

.table-header[b-gr3f4dy9gm] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 2px solid #dee2e6;
}

.table-header th[b-gr3f4dy9gm] {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem;
    border: none;
}

.rights-table tbody tr[b-gr3f4dy9gm] {
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f3f4;
}

.rights-table tbody tr:hover[b-gr3f4dy9gm] {
    background-color: #f8f9fa;
    transform: translateX(2px);
}

.rights-table td[b-gr3f4dy9gm] {
    padding: 1rem;
    vertical-align: middle;
}

.description-cell[b-gr3f4dy9gm] {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Action Buttons */
.action-buttons[b-gr3f4dy9gm] {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.action-buttons .btn[b-gr3f4dy9gm] {
    border-radius: 6px;
    transition: all 0.2s ease;
    padding: 0.375rem 0.75rem;
}

.action-buttons .btn:hover[b-gr3f4dy9gm] {
    transform: scale(1.05);
}

/* Table Footer */
.table-footer[b-gr3f4dy9gm] {
    background: white;
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    border-radius: 0 0 10px 10px;
}

/* Empty State */
.empty-state[b-gr3f4dy9gm] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* Modal Enhancements */
.modal-content[b-gr3f4dy9gm] {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header[b-gr3f4dy9gm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title[b-gr3f4dy9gm] {
    font-weight: 600;
}

.modal-body[b-gr3f4dy9gm] {
    padding: 2rem;
}

.modal-footer[b-gr3f4dy9gm] {
    padding: 1.5rem 2rem;
    border-top: 1px solid #dee2e6;
}

/* Form Controls */
.form-control:focus[b-gr3f4dy9gm] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-check-input:checked[b-gr3f4dy9gm] {
    background-color: #667eea;
    border-color: #667eea;
}

/* Alert Styles */
.alert[b-gr3f4dy9gm] {
    border-radius: 10px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-success[b-gr3f4dy9gm] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger[b-gr3f4dy9gm] {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* Badge Styles */
.badge[b-gr3f4dy9gm] {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

/* Button Enhancements */
.btn-primary[b-gr3f4dy9gm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover[b-gr3f4dy9gm] {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .treatment-rights-manager[b-gr3f4dy9gm] {
        padding: 1rem;
    }
    
    .manager-header[b-gr3f4dy9gm] {
        padding: 1rem;
    }
    
    .manager-header .d-flex[b-gr3f4dy9gm] {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .action-buttons[b-gr3f4dy9gm] {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .action-buttons .btn[b-gr3f4dy9gm] {
        width: 100%;
    }
    
    .description-cell[b-gr3f4dy9gm] {
        max-width: 150px;
    }
}

/* Animation for smooth transitions */
@keyframes fadeIn-b-gr3f4dy9gm {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rights-table tbody tr[b-gr3f4dy9gm] {
    animation: fadeIn-b-gr3f4dy9gm 0.3s ease;
}
/* _content/YumBlazor/Components/Shared/StaffPickup.razor.rz.scp.css */
/* Staff Pickup Container */
.staff-pickup-container[b-q8rvcu1r91] {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1rem;
    background: #f8f9fa;
}

.pickup-header h6[b-q8rvcu1r91] {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0;
}

/* Search Section */
.search-section[b-q8rvcu1r91] {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.search-input[b-q8rvcu1r91] {
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 0.9rem;
}

.search-input:focus[b-q8rvcu1r91] {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Staff List */
.staff-list-container[b-q8rvcu1r91] {
    max-height: 400px;
    overflow-y: auto;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.staff-list[b-q8rvcu1r91] {
    padding: 0.5rem;
}

.staff-item[b-q8rvcu1r91] {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    border: 1px solid transparent;
}

.staff-item:hover[b-q8rvcu1r91] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
    transform: translateX(2px);
}

.staff-item.selected[b-q8rvcu1r91] {
    background-color: #e3f2fd;
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Staff Avatar */
.staff-avatar[b-q8rvcu1r91] {
    position: relative;
    margin-right: 0.75rem;
}

.staff-avatar img[b-q8rvcu1r91] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.avatar-placeholder[b-q8rvcu1r91] {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #e9ecef;
}

.status-indicator[b-q8rvcu1r91] {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    bottom: 0;
    right: 0;
    border: 2px solid white;
}

.status-indicator.active[b-q8rvcu1r91] {
    background-color: #28a745;
}

/* Staff Info */
.staff-info[b-q8rvcu1r91] {
    flex-grow: 1;
    min-width: 0;
}

.staff-name[b-q8rvcu1r91] {
    font-weight: 600;
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.25rem;
}

.staff-details[b-q8rvcu1r91],
.staff-contact[b-q8rvcu1r91] {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.1rem;
}

.staff-details small[b-q8rvcu1r91],
.staff-contact small[b-q8rvcu1r91] {
    display: inline-block;
}

/* Staff Status */
.staff-status[b-q8rvcu1r91] {
    flex-shrink: 0;
}

.staff-status .badge[b-q8rvcu1r91] {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
}

/* Selected Staff Display */
.selected-staff .alert[b-q8rvcu1r91] {
    margin-bottom: 0;
    border-radius: 8px;
    border: 1px solid #667eea;
    background-color: #e3f2fd;
}

.selected-avatar[b-q8rvcu1r91],
.selected-avatar-placeholder[b-q8rvcu1r91] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.selected-avatar[b-q8rvcu1r91] {
    object-fit: cover;
    border: 2px solid #667eea;
}

.selected-avatar-placeholder[b-q8rvcu1r91] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    border: 2px solid #667eea;
}

/* Empty State */
.empty-state[b-q8rvcu1r91] {
    color: #6c757d;
}

.empty-state .display-6[b-q8rvcu1r91] {
    font-size: 3rem;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .staff-item[b-q8rvcu1r91] {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .staff-avatar[b-q8rvcu1r91] {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .staff-status[b-q8rvcu1r91] {
        margin-top: 0.5rem;
    }
}

/* Scrollbar Styling */
.staff-list-container[b-q8rvcu1r91]::-webkit-scrollbar {
    width: 6px;
}

.staff-list-container[b-q8rvcu1r91]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.staff-list-container[b-q8rvcu1r91]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.staff-list-container[b-q8rvcu1r91]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
/* _content/YumBlazor/Components/UserRoleManager.razor.rz.scp.css */
/* Main container */
.user-role-manager[b-16hns883tn] {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Page header */
.page-header[b-16hns883tn] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.page-icon[b-16hns883tn] {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.page-title[b-16hns883tn] {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.page-subtitle[b-16hns883tn] {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main container styles */
.user-role-manager[b-16hns883tn] {
    padding: 1rem;
}

/* Loading spinner */
.loading-spinner[b-16hns883tn] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Users list styling */
.users-list[b-16hns883tn] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.list-header[b-16hns883tn] {
    padding: 1rem;
    background-color: var(--bs-gray-100);
    border-bottom: 1px solid var(--bs-border-color);
}

.list-content[b-16hns883tn] {
    overflow-y: auto;
    max-height: calc(100vh - 250px);
}

.user-item[b-16hns883tn] {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    background: none;
    text-align: left;
    border-bottom: 1px solid var(--bs-border-color);
    transition: all 0.2s ease;
    position: relative;
}

.user-item:hover[b-16hns883tn] {
    background: var(--bs-primary-bg-subtle);
    border-color: var(--bs-primary-border-subtle);
}

.user-item.active[b-16hns883tn] {
    background: var(--bs-primary);
    color: white;
    border-color: var(--bs-primary);
}

.user-avatar[b-16hns883tn] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bs-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    color: var(--bs-gray-600);
    flex-shrink: 0;
}

.user-avatar.large[b-16hns883tn] {
    width: 60px;
    height: 60px;
    font-size: 2rem;
}

.user-item.active .user-avatar[b-16hns883tn] {
    background: rgba(255, 255, 255, 0.2);
    color: green;
}

.user-details[b-16hns883tn] {
    flex: 1;
    overflow: hidden;
}

.user-email[b-16hns883tn] {
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-name[b-16hns883tn] {
    font-size: 0.85rem;
    opacity: 0.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* User info card */
.user-info-card[b-16hns883tn] {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid var(--bs-border-color);
}

/* Role grid */
.roles-grid[b-16hns883tn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.role-item[b-16hns883tn] {
    background: var(--bs-gray-50);
    border: 2px solid var(--bs-border-color);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.2s ease;
}

.role-item:hover[b-16hns883tn] {
    background: var(--bs-primary-bg-subtle);
    border-color: var(--bs-primary-border-subtle);
}

.role-item:has(.form-check-input:checked)[b-16hns883tn] {
    background: var(--bs-primary-bg-subtle);
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 2px rgba(var(--bs-primary-rgb), 0.25);
}

.form-check[b-16hns883tn] {
    margin: 0;
}

.form-check-input[b-16hns883tn] {
    margin-top: 0;
    transform: scale(1.2);
}

.role-name[b-16hns883tn] {
    font-weight: 500;
    margin-left: 0.5rem;
}

/* Cards */
.card[b-16hns883tn] {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover[b-16hns883tn] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.card-header[b-16hns883tn] {
    background: var(--bs-gray-50);
    border-bottom: 1px solid var(--bs-border-color);
    border-radius: 1rem 1rem 0 0 !important;
    padding: 1rem 1.5rem;
}

.card-body[b-16hns883tn] {
    padding: 1.5rem;
}

/* Alerts */
.alert[b-16hns883tn] {
    border: none;
    border-radius: 0.75rem;
    font-weight: 500;
}

.alert-success[b-16hns883tn] {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.alert-danger[b-16hns883tn] {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
}

/* Buttons */
.btn[b-16hns883tn] {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.btn-primary[b-16hns883tn] {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover[b-16hns883tn] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

.btn-success[b-16hns883tn] {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.btn-warning[b-16hns883tn] {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border: none;
    color: #212529;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* Input groups */
.input-group-text[b-16hns883tn] {
    background: var(--bs-gray-100);
    border-color: var(--bs-border-color);
    color: var(--bs-gray-600);
}

.form-control:focus[b-16hns883tn] {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-primary-rgb), 0.25);
}

/* Loading states */
.loading-container[b-16hns883tn] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.loading-content[b-16hns883tn] {
    text-align: center;
    color: var(--bs-gray-600);
}

/* Empty state */
.empty-state[b-16hns883tn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    text-align: center;
    color: var(--bs-gray-600);
}

.empty-icon[b-16hns883tn] {
    width: 80px;
    height: 80px;
    background: var(--bs-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bs-gray-400);
}

/* Responsive design */
@media (max-width: 768px) {
    .user-role-manager[b-16hns883tn] {
        padding: 1rem;
    }
    
    .page-header[b-16hns883tn] {
        padding: 1.5rem;
    }
    
    .page-icon[b-16hns883tn] {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .page-title[b-16hns883tn] {
        font-size: 1.5rem;
    }
    
    .roles-grid[b-16hns883tn] {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar styling */
.users-list[b-16hns883tn]::-webkit-scrollbar {
    width: 6px;
}

.users-list[b-16hns883tn]::-webkit-scrollbar-track {
    background: transparent;
}

.users-list[b-16hns883tn]::-webkit-scrollbar-thumb {
    background: var(--bs-gray-400);
    border-radius: 3px;
}

.users-list[b-16hns883tn]::-webkit-scrollbar-thumb:hover {
    background: var(--bs-gray-500);
}
