/* /Components/AppErrorBoundary.razor.rz.scp.css */
.error-boundary-container[b-ff4iqi4q9k] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 2rem;
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
}

.error-boundary-card[b-ff4iqi4q9k] {
    background: var(--card-bg);
    border: 2px solid var(--primary-purple);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(108, 92, 231, 0.4),
                0 0 40px rgba(253, 121, 168, 0.2);
    animation: slideIn-b-ff4iqi4q9k 0.4s ease-out;
}

@keyframes slideIn-b-ff4iqi4q9k {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.error-icon[b-ff4iqi4q9k] {
    text-align: center;
    margin-bottom: 1.5rem;
}

.error-icon i[b-ff4iqi4q9k] {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-b-ff4iqi4q9k 2s ease-in-out infinite;
}

@keyframes pulse-b-ff4iqi4q9k {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.error-title[b-ff4iqi4q9k] {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-message[b-ff4iqi4q9k] {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.error-details[b-ff4iqi4q9k] {
    margin: 2rem 0;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    padding: 1rem;
}

.error-details summary[b-ff4iqi4q9k] {
    cursor: pointer;
    font-weight: 600;
    color: var(--accent-cyan);
    padding: 0.5rem;
    user-select: none;
}

.error-details summary:hover[b-ff4iqi4q9k] {
    color: var(--primary-purple);
}

.error-details-content[b-ff4iqi4q9k] {
    padding: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(108, 92, 231, 0.2);
}

.error-details-content p[b-ff4iqi4q9k] {
    margin: 0.5rem 0;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.error-details-content strong[b-ff4iqi4q9k] {
    color: var(--accent-cyan);
}

.error-details-content pre[b-ff4iqi4q9k] {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.85rem;
    color: var(--text-secondary);
    direction: ltr;
    text-align: left;
}

.error-actions[b-ff4iqi4q9k] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-reload[b-ff4iqi4q9k],
.btn-home[b-ff4iqi4q9k] {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-reload[b-ff4iqi4q9k] {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    color: white;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-reload:hover[b-ff4iqi4q9k] {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(253, 121, 168, 0.5);
}

.btn-home[b-ff4iqi4q9k] {
    background: rgba(0, 206, 201, 0.2);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.btn-home:hover[b-ff4iqi4q9k] {
    background: rgba(0, 206, 201, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 206, 201, 0.3);
}

.btn-reload i[b-ff4iqi4q9k],
.btn-home i[b-ff4iqi4q9k] {
    font-size: 1.1rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .error-boundary-card[b-ff4iqi4q9k] {
        padding: 2rem;
        margin: 1rem;
    }

    .error-title[b-ff4iqi4q9k] {
        font-size: 1.5rem;
    }

    .error-message[b-ff4iqi4q9k] {
        font-size: 1rem;
    }

    .error-actions[b-ff4iqi4q9k] {
        flex-direction: column;
    }

    .btn-reload[b-ff4iqi4q9k],
    .btn-home[b-ff4iqi4q9k] {
        width: 100%;
        justify-content: center;
    }
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
/* Loading Spinner Component Styles */

.loading-container[b-s31cdgfy9d] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: var(--darker-bg, #0a0a1a);
    /* Fullscreen overlay positioning */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100vw;
}

.gaming-loader[b-s31cdgfy9d] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-ring[b-s31cdgfy9d] {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    border: 3px solid transparent;
    animation: loadingSpin-b-s31cdgfy9d 2s linear infinite;
}

.loader-ring:nth-child(1)[b-s31cdgfy9d] {
    border-top-color: var(--primary-purple, #6c5ce7);
    animation-delay: 0s;
}

.loader-ring:nth-child(2)[b-s31cdgfy9d] {
    border-right-color: var(--secondary-pink, #fd79a8);
    animation-delay: 0.5s;
    width: 60px;
    height: 60px;
}

.loader-ring:nth-child(3)[b-s31cdgfy9d] {
    border-bottom-color: var(--accent-cyan, #00cec9);
    animation-delay: 1s;
    width: 40px;
    height: 40px;
}

@keyframes loadingSpin-b-s31cdgfy9d {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text[b-s31cdgfy9d] {
    margin-top: 100px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #6c5ce7, #fd79a8);
    background: var(--gradient-1, linear-gradient(135deg, #6c5ce7, #fd79a8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-b-s31cdgfy9d 2s ease-in-out infinite;
}

@keyframes pulse-b-s31cdgfy9d {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Inline/Embedded Mode */
.loading-container.inline[b-s31cdgfy9d] {
    height: auto;
    min-height: 200px;
    background: transparent;
    position: relative;
    width: 100%;
    z-index: 1;
}

.loading-container.small .gaming-loader[b-s31cdgfy9d] {
    gap: 1rem;
    transform: scale(0.7);
}

.loading-container.small .loading-text[b-s31cdgfy9d] {
    margin-top: 70px;
    font-size: 1rem;
}
/* /Components/NotificationContainer.razor.rz.scp.css */
.notification-container[b-2dgitxi638] {
    position: fixed;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    pointer-events: none;
}

.notification-container > *[b-2dgitxi638] {
    pointer-events: auto;
}

/* Position Classes */
.position-top-left[b-2dgitxi638] {
    top: 0;
    left: 0;
    align-items: flex-start;
}

.position-top-center[b-2dgitxi638] {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

.position-top-right[b-2dgitxi638] {
    top: 0;
    right: 0;
    align-items: flex-end;
}

.position-bottom-left[b-2dgitxi638] {
    bottom: 0;
    left: 0;
    align-items: flex-start;
}

.position-bottom-center[b-2dgitxi638] {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

.position-bottom-right[b-2dgitxi638] {
    bottom: 0;
    right: 0;
    align-items: flex-end;
}

.position-center-left[b-2dgitxi638] {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    align-items: flex-start;
}

.position-center-right[b-2dgitxi638] {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    align-items: flex-end;
}

/* Notification Styles */
.notification[b-2dgitxi638] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: max-content;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.notification-content[b-2dgitxi638] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    overflow: hidden;
}

.notification-icon[b-2dgitxi638] {
    font-size: 18px;
    flex-shrink: 0;
}

.notification-message[b-2dgitxi638] {
    white-space: nowrap;
    overflow: visible;
}

.notification-close[b-2dgitxi638] {
    background: none;
    border: none;
    color: inherit;
    font-size: 20px;
    cursor: pointer;
    padding: 0 0 0 12px;
    margin: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.notification-close:hover[b-2dgitxi638] {
    opacity: 1;
}

/* Level Colors */
.notification-info[b-2dgitxi638] {
    background-color: #3498db;
    color: white;
}

.notification-success[b-2dgitxi638] {
    background-color: #2ecc71;
    color: white;
}

.notification-warning[b-2dgitxi638] {
    background-color: #f39c12;
    color: white;
}

.notification-error[b-2dgitxi638] {
    background-color: #e74c3c;
    color: white;
}

/* Animations */
.notification-show[b-2dgitxi638] {
    animation: slideIn-b-2dgitxi638 0.3s ease-out forwards;
    opacity: 1;
}

.notification-hide[b-2dgitxi638] {
    animation: slideOut-b-2dgitxi638 0.3s ease-in forwards;
    opacity: 0;
}

@keyframes slideIn-b-2dgitxi638 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut-b-2dgitxi638 {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}
/* /Components/PersianDatePicker.razor.rz.scp.css */
.persian-datepicker-container[b-rc47wiwk5u] {
    position: relative;
    width: 100%;
}

.datepicker-input[b-rc47wiwk5u] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    user-select: none;
}

.datepicker-input i[b-rc47wiwk5u] {
    color: var(--primary-purple);
    font-size: 1.1rem;
}

.datepicker-input span[b-rc47wiwk5u] {
    flex: 1;
}

.datepicker-overlay[b-rc47wiwk5u] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.datepicker-popup[b-rc47wiwk5u] {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--card-bg);
    border: 2px solid var(--primary-purple);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(108, 92, 231, 0.4), 0 0 30px rgba(108, 92, 231, 0.2);
    animation: slideDown-b-rc47wiwk5u 0.3s ease;
    max-width: 400px;
    margin: 0 auto;
}

@keyframes slideDown-b-rc47wiwk5u {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.datepicker-header[b-rc47wiwk5u] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(108, 92, 231, 0.3);
}

.nav-btn[b-rc47wiwk5u] {
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--primary-purple);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover[b-rc47wiwk5u] {
    background: var(--primary-purple);
    box-shadow: 0 0 15px rgba(108, 92, 231, 0.5);
    transform: scale(1.05);
}

.current-month[b-rc47wiwk5u] {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.datepicker-body[b-rc47wiwk5u] {
    margin-bottom: 1.5rem;
}

.weekday-headers[b-rc47wiwk5u] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.weekday[b-rc47wiwk5u] {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-cyan);
    padding: 0.5rem;
}

.days-grid[b-rc47wiwk5u] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.day-cell[b-rc47wiwk5u] {
    aspect-ratio: 1;
    border: 1px solid rgba(108, 92, 231, 0.2);
    background: rgba(26, 26, 46, 0.4);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.day-cell.current-month[b-rc47wiwk5u] {
    border-color: rgba(108, 92, 231, 0.4);
}

.day-cell.current-month:hover[b-rc47wiwk5u] {
    background: rgba(108, 92, 231, 0.3);
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
    transform: scale(1.05);
}

.day-cell.other-month[b-rc47wiwk5u] {
    color: var(--text-secondary);
    opacity: 0.3;
    cursor: not-allowed;
}

.day-cell.today[b-rc47wiwk5u] {
    border: 2px solid var(--accent-cyan);
    background: rgba(0, 206, 201, 0.15);
    color: var(--accent-cyan);
    font-weight: 700;
}

.day-cell.selected[b-rc47wiwk5u] {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    border-color: var(--secondary-pink);
    color: white;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(253, 121, 168, 0.5);
}

.datepicker-time[b-rc47wiwk5u] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(108, 92, 231, 0.3);
    margin-bottom: 1.5rem;
}

.time-section[b-rc47wiwk5u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.time-section label[b-rc47wiwk5u] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.time-input[b-rc47wiwk5u] {
    width: 60px;
    padding: 0.6rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(108, 92, 231, 0.4);
    border-radius: 8px;
    color: var(--text-primary);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.time-input:focus[b-rc47wiwk5u] {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.time-separator[b-rc47wiwk5u] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-top: 1.5rem;
}

.datepicker-actions[b-rc47wiwk5u] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-cancel[b-rc47wiwk5u],
.btn-confirm[b-rc47wiwk5u] {
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Vazirmatn', sans-serif;
}

.btn-cancel[b-rc47wiwk5u] {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.4);
}

.btn-cancel:hover[b-rc47wiwk5u] {
    background: rgba(255, 71, 87, 0.3);
    box-shadow: 0 0 15px rgba(255, 71, 87, 0.3);
}

.btn-confirm[b-rc47wiwk5u] {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    color: white;
    border: 1px solid var(--secondary-pink);
}

.btn-confirm:hover[b-rc47wiwk5u] {
    box-shadow: 0 0 20px rgba(253, 121, 168, 0.5);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .datepicker-popup[b-rc47wiwk5u] {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
        max-width: 90%;
        width: 350px;
    }
    
    @keyframes slideDown-b-rc47wiwk5u {
        from {
            opacity: 0;
            transform: translate(-50%, -50%) scale(0.9);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-bfogtmzqw2] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content[b-bfogtmzqw2] {
    flex: 1;
    padding-top: 80px;
}

.nav-actions[b-bfogtmzqw2] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-name[b-bfogtmzqw2] {
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 20px;
}

.btn-logout[b-bfogtmzqw2],
.btn-login-nav[b-bfogtmzqw2] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: inherit;
}

.btn-logout:hover[b-bfogtmzqw2],
.btn-login-nav:hover[b-bfogtmzqw2] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}

/* Two-Level Navigation Menu */
.nav-item[b-bfogtmzqw2] {
    position: relative;
}

.nav-item .nav-link[b-bfogtmzqw2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item.has-dropdown[b-bfogtmzqw2] {
    position: relative;
}

.dropdown-arrow[b-bfogtmzqw2] {
    font-size: 0.75rem;
    margin-right: 0.3rem;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow[b-bfogtmzqw2] {
    transform: rotate(-180deg);
}

.dropdown-menu[b-bfogtmzqw2] {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.nav-item.has-dropdown:hover .dropdown-menu[b-bfogtmzqw2] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item[b-bfogtmzqw2] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.dropdown-item i[b-bfogtmzqw2] {
    font-size: 1rem;
    color: var(--primary-purple);
    min-width: 1.2rem;
    text-align: center;
}

.dropdown-item:hover[b-bfogtmzqw2] {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-purple);
    padding-right: 1.5rem;
}

.dropdown-menu li:first-child .dropdown-item[b-bfogtmzqw2] {
    border-radius: 12px 12px 0 0;
}

.dropdown-menu li:last-child .dropdown-item[b-bfogtmzqw2] {
    border-radius: 0 0 12px 12px;
}

.footer[b-bfogtmzqw2] {
    background: var(--darker-bg);
    border-top: 1px solid rgba(108, 92, 231, 0.2);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content[b-bfogtmzqw2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3[b-bfogtmzqw2],
.footer-section h4[b-bfogtmzqw2] {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p[b-bfogtmzqw2] {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links[b-bfogtmzqw2] {
    list-style: none;
}

.footer-links li[b-bfogtmzqw2] {
    margin-bottom: 0.5rem;
}

.footer-links a[b-bfogtmzqw2] {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover[b-bfogtmzqw2] {
    color: var(--primary-purple);
}

.social-links[b-bfogtmzqw2] {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link[b-bfogtmzqw2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-purple);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover[b-bfogtmzqw2] {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.newsletter[b-bfogtmzqw2] {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-input[b-bfogtmzqw2] {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 25px;
    background: rgba(26, 26, 46, 0.5);
    color: var(--text-primary);
    font-family: 'Vazirmatn', sans-serif;
}

.newsletter-input[b-bfogtmzqw2]::placeholder {
    color: var(--text-secondary);
}

.newsletter-input:focus[b-bfogtmzqw2] {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 10px rgba(108, 92, 231, 0.3);
}

.footer-bottom[b-bfogtmzqw2] {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(108, 92, 231, 0.1);
    color: var(--text-secondary);
}

.mobile-menu-toggle[b-bfogtmzqw2] {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-menu[b-bfogtmzqw2] {
        display: none;
    }
    
    .nav-menu.mobile-open[b-bfogtmzqw2] {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(108, 92, 231, 0.2);
        padding: 1rem;
        gap: 0;
    }
    
    .nav-menu.mobile-open .nav-item[b-bfogtmzqw2] {
        width: 100%;
        border-bottom: 1px solid rgba(108, 92, 231, 0.1);
    }
    
    .nav-menu.mobile-open .nav-link[b-bfogtmzqw2] {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-menu.mobile-open .dropdown-menu[b-bfogtmzqw2] {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0;
        border: none;
        border-top: 1px solid rgba(108, 92, 231, 0.1);
        border-radius: 0;
        background: rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.mobile-open .nav-item.has-dropdown.open .dropdown-menu[b-bfogtmzqw2] {
        max-height: 300px;
    }
    
    .nav-actions[b-bfogtmzqw2] {
        display: none;
    }
    
    .mobile-menu-toggle[b-bfogtmzqw2] {
        display: block !important;
    }
    
    .newsletter[b-bfogtmzqw2] {
        flex-direction: column;
    }
    
    .footer-content[b-bfogtmzqw2] {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links[b-bfogtmzqw2] {
        justify-content: center;
    }
}
/* /Pages/Customer/Feedback.razor.rz.scp.css */
.feedback-textarea[b-hi4yfpzz9n] {
    min-height: 200px;
    resize: vertical;
    font-family: inherit;
}

.form-actions[b-hi4yfpzz9n] {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-secondary[b-hi4yfpzz9n] {
    background: rgba(108, 92, 231, 0.2);
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover[b-hi4yfpzz9n] {
    background: rgba(108, 92, 231, 0.3);
}

@media (max-width: 768px) {
    .form-actions[b-hi4yfpzz9n] {
        flex-direction: column;
    }
    
    .form-actions button[b-hi4yfpzz9n] {
        width: 100%;
    }
}
/* /Pages/Customer/Summary.razor.rz.scp.css */
.summary-grid[b-194cdys1q6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.summary-grid .full-width[b-194cdys1q6] {
    grid-column: 1 / -1;
}

.info-grid[b-194cdys1q6] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.info-item[b-194cdys1q6] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label[b-194cdys1q6] {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.info-value[b-194cdys1q6] {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.loyalty-card[b-194cdys1q6] {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.loyalty-card .card-header[b-194cdys1q6] {
    color: #FFD700;
}

.badge[b-194cdys1q6] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge-success[b-194cdys1q6] {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.no-data[b-194cdys1q6] {
    text-align: center;
    padding: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .summary-grid[b-194cdys1q6] {
        grid-template-columns: 1fr;
    }
    
    .info-grid[b-194cdys1q6] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Feedbacks/Index.razor.rz.scp.css */
.feedbacks-grid[b-otdmxhkmkj] {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feedback-card[b-otdmxhkmkj] {
    position: relative;
}

.feedback-card.unread[b-otdmxhkmkj] {
    border-right: 4px solid var(--accent-purple);
}

.feedback-header[b-otdmxhkmkj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feedback-info h3[b-otdmxhkmkj] {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.customer-info[b-otdmxhkmkj] {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.25rem;
}

.separator[b-otdmxhkmkj] {
    color: var(--text-secondary);
    opacity: 0.5;
}

.submitted-date[b-otdmxhkmkj] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feedback-status[b-otdmxhkmkj] {
    flex-shrink: 0;
}

.badge[b-otdmxhkmkj] {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-read[b-otdmxhkmkj] {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.badge-unread[b-otdmxhkmkj] {
    background: rgba(108, 92, 231, 0.3);
    color: var(--accent-purple);
}

.feedback-message[b-otdmxhkmkj] {
    padding: 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.feedback-message p[b-otdmxhkmkj] {
    color: var(--text-primary);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.feedback-actions[b-otdmxhkmkj] {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-sm[b-otdmxhkmkj] {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .feedback-header[b-otdmxhkmkj] {
        flex-direction: column;
    }
    
    .feedback-status[b-otdmxhkmkj] {
        align-self: flex-start;
    }
}
/* /Pages/FinancialAccounts/Index.razor.rz.scp.css */
.account-balance[b-qarhs74alv] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 0.8rem;
    background: rgba(253, 203, 110, 0.1);
    border: 1px solid rgba(253, 203, 110, 0.3);
    border-radius: 8px;
    color: var(--accent-yellow);
    font-weight: 600;
    font-size: 0.95rem;
}

.account-balance i[b-qarhs74alv] {
    font-size: 1.1rem;
}
/* /Pages/Home.razor.rz.scp.css */
.gradient-1-bg[b-qbu9kurhgf] { background: var(--gradient-1); }
.gradient-2-bg[b-qbu9kurhgf] { background: var(--gradient-2); }
.gradient-3-bg[b-qbu9kurhgf] { background: var(--gradient-3); }
.bg-purple-07[b-qbu9kurhgf] { background: rgba(108, 92, 231, 0.07); }
.text-white[b-qbu9kurhgf] { color: white; }
.primary-purple[b-qbu9kurhgf] { color: var(--primary-purple); }
.secondary-pink[b-qbu9kurhgf] { color: var(--secondary-pink); }
.accent-cyan[b-qbu9kurhgf] { color: var(--accent-cyan); }
.accent-yellow[b-qbu9kurhgf] { color: var(--accent-yellow); }
.text-secondary[b-qbu9kurhgf] { color: var(--text-secondary); }
.mb-1rem[b-qbu9kurhgf] { margin-bottom: 1rem; }
.mb-1-5rem[b-qbu9kurhgf] { margin-bottom: 1.5rem; }
.mb-2rem[b-qbu9kurhgf] { margin-bottom: 2rem; }
.ml-0-5rem[b-qbu9kurhgf] { margin-left: 0.5rem; }
.p-0-7rem[b-qbu9kurhgf] { padding: 0.7rem; }
.font-600[b-qbu9kurhgf] { font-weight: 600; }
.font-700[b-qbu9kurhgf] { font-weight: 700; }

.center-features-grid[b-qbu9kurhgf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-list[b-qbu9kurhgf] {
    list-style: none;
}
.pricing-card[b-qbu9kurhgf] {
    max-width: 600px;
    margin: 0 auto;
}
.pricing-header[b-qbu9kurhgf] {
    text-align: center;
    margin-bottom: 2rem;
}
.pricing-table[b-qbu9kurhgf] {
    width: 100%;
    color: var(--text-secondary);
    font-size: 1.1rem;
    border-radius: 10px;
    overflow: hidden;
}
.pricing-btn[b-qbu9kurhgf] {
    width: 100%;
    text-align: center;
}
.contact-section[b-qbu9kurhgf] {
    background: rgba(26, 26, 46, 0.3);
    margin: 2rem 0;
    border-radius: 20px;
}
.contact-grid[b-qbu9kurhgf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}
.contact-address[b-qbu9kurhgf] {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.contact-hours[b-qbu9kurhgf] {
    line-height: 2;
}
.contact-hours-row[b-qbu9kurhgf] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.contact-btn[b-qbu9kurhgf] {
    width: 100%;
    text-align: center;
}

/* Existing styles remain below */
.tournament-banner[b-qbu9kurhgf] {
    background: var(--gradient-1);
    background-size: 400% 400%;
    animation: gradientShift-b-qbu9kurhgf 6s ease infinite;
}

.game-price[b-qbu9kurhgf] {
    text-align: center;
    padding: 1rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 10px;
    margin-top: 1rem;
    color: var(--primary-purple);
    font-weight: 600;
}

.feature-grid[b-qbu9kurhgf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 2rem 0 1rem 0;
}

.feature-card[b-qbu9kurhgf] {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px 0 rgba(80, 80, 120, 0.10);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    border: none;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 210px;
}

.feature-card:hover[b-qbu9kurhgf] {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(108, 92, 231, 0.13);
}

.feature-icon[b-qbu9kurhgf] {
    font-size: 2.7rem;
    color: var(--primary-purple, #6c5ce7);
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #6c5ce7 40%, #fd79a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-title[b-qbu9kurhgf] {
    font-size: 1.18rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2px;
}

.feature-desc[b-qbu9kurhgf] {
    font-size: 1.02rem;
    color: #555;
    margin-bottom: 0.2rem;
    font-weight: 400;
}

.btn-gaming[b-qbu9kurhgf] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, var(--primary-purple, #6c5ce7) 60%, var(--secondary-pink, #fd79a8) 100%);
    color: #fff;
    font-family: inherit;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.7rem 2.2rem;
    border: none;
    border-radius: 30px;
    box-shadow: 0 2px 12px 0 rgba(108, 92, 231, 0.10);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
    text-decoration: none;
    outline: none;
}

.btn-gaming:hover[b-qbu9kurhgf], .btn-gaming:focus[b-qbu9kurhgf] {
    background: linear-gradient(90deg, var(--secondary-pink, #fd79a8) 40%, var(--primary-purple, #6c5ce7) 100%);
    box-shadow: 0 4px 24px 0 rgba(108, 92, 231, 0.18);
    transform: translateY(-2px) scale(1.03);
    color: #fff;
}

.btn-gaming.btn-secondary[b-qbu9kurhgf] {
    background: linear-gradient(90deg, var(--accent-cyan, #00b894) 60%, var(--primary-purple, #6c5ce7) 100%);
    color: #fff;
}

.btn-gaming.btn-secondary:hover[b-qbu9kurhgf], .btn-gaming.btn-secondary:focus[b-qbu9kurhgf] {
    background: linear-gradient(90deg, var(--primary-purple, #6c5ce7) 40%, var(--accent-cyan, #00b894) 100%);
}

.btn-gaming i[b-qbu9kurhgf] {
    font-size: 1.1em;
    margin-left: 0.4em;
}

@media (max-width: 600px) {
    .feature-grid[b-qbu9kurhgf] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card[b-qbu9kurhgf] {
        padding: 1.2rem 0.5rem 0.8rem 0.5rem;
        min-height: 140px;
    }
    .feature-title[b-qbu9kurhgf] {
        font-size: 1rem;
    }
    .feature-icon[b-qbu9kurhgf] {
        font-size: 2rem;
    }
    .center-features-grid[b-qbu9kurhgf],
    .contact-grid[b-qbu9kurhgf] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .btn-gaming[b-qbu9kurhgf] {
        width: 100%;
        padding: 0.7rem 0.5rem;
        font-size: 1rem;
    }
}

@keyframes gradientShift-b-qbu9kurhgf {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* /Pages/Login.razor.rz.scp.css */
.login-section[b-gwodvkt3sb] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-container[b-gwodvkt3sb] {
    max-width: 450px;
    width: 100%;
}

.login-card[b-gwodvkt3sb] {
    padding: 2.5rem;
    border: 2px solid rgba(108, 92, 231, 0.3);
}

.login-header[b-gwodvkt3sb] {
    text-align: center;
    margin-bottom: 2rem;
}

.login-icon[b-gwodvkt3sb] {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
    animation: pulse-b-gwodvkt3sb 2s ease-in-out infinite;
}

@keyframes pulse-b-gwodvkt3sb {
    0%, 100% {
        box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(108, 92, 231, 0.6);
    }
}

.login-title[b-gwodvkt3sb] {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.login-subtitle[b-gwodvkt3sb] {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.login-tabs[b-gwodvkt3sb] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
}

.tab-button[b-gwodvkt3sb] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-button:hover[b-gwodvkt3sb] {
    background: rgba(108, 92, 231, 0.2);
}

.tab-button.active[b-gwodvkt3sb] {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.btn-login[b-gwodvkt3sb] {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.btn-secondary[b-gwodvkt3sb] {
    background: rgba(108, 92, 231, 0.2);
    color: var(--text-primary);
}

.btn-secondary:hover[b-gwodvkt3sb] {
    background: rgba(108, 92, 231, 0.3);
}

.login-footer[b-gwodvkt3sb] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(108, 92, 231, 0.2);
    text-align: center;
}

.default-credentials[b-gwodvkt3sb] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.default-credentials i[b-gwodvkt3sb] {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .login-card[b-gwodvkt3sb] {
        padding: 1.5rem;
    }

    .login-title[b-gwodvkt3sb] {
        font-size: 1.5rem;
    }

    .login-icon[b-gwodvkt3sb] {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .tab-button[b-gwodvkt3sb] {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
}
/* /Pages/Management.razor.rz.scp.css */
/* Modal Overlay */
.modal-overlay[b-lj8xr62ksj] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn-b-lj8xr62ksj 0.2s ease;
}

.modal-overlay.show[b-lj8xr62ksj] {
    display: flex;
}

@keyframes fadeIn-b-lj8xr62ksj {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.gaming-modal[b-lj8xr62ksj] {
    background: var(--card-bg);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(108, 92, 231, 0.3);
    animation: slideUp-b-lj8xr62ksj 0.3s ease;
    direction: rtl;
}

.gaming-modal.modal-large[b-lj8xr62ksj] {
    max-width: 700px;
}

@keyframes slideUp-b-lj8xr62ksj {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-lj8xr62ksj] {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-lj8xr62ksj] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-header h3 i[b-lj8xr62ksj] {
    color: var(--primary-purple);
}

.btn-close[b-lj8xr62ksj] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-close:hover[b-lj8xr62ksj] {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.modal-body[b-lj8xr62ksj] {
    padding: 2rem;
}

.modal-actions[b-lj8xr62ksj] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.modal-actions button[b-lj8xr62ksj] {
    flex: 1;
    min-width: 150px;
}

/* Session Summary */
.session-summary[b-lj8xr62ksj] {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-row[b-lj8xr62ksj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.1);
}

.summary-row:last-child[b-lj8xr62ksj] {
    border-bottom: none;
}

.summary-row .label[b-lj8xr62ksj] {
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.summary-row .label i[b-lj8xr62ksj] {
    color: var(--primary-purple);
    width: 20px;
}

.summary-row .value[b-lj8xr62ksj] {
    color: var(--text-primary);
    font-weight: 600;
}

/* Price Section */
.price-section[b-lj8xr62ksj] {
    background: rgba(26, 26, 46, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.recommended-price[b-lj8xr62ksj] {
    background: var(--gradient-2);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.recommended-price i[b-lj8xr62ksj] {
    font-size: 1.5rem;
}

.recommended-price strong[b-lj8xr62ksj] {
    font-size: 1.3rem;
    margin-right: auto;
}

.price-difference[b-lj8xr62ksj] {
    padding: 0.8rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.price-difference.increase[b-lj8xr62ksj] {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.price-difference.decrease[b-lj8xr62ksj] {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.3);
}

/* Confirm Summary */
.confirm-summary[b-lj8xr62ksj] {
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.summary-item[b-lj8xr62ksj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.summary-item .label[b-lj8xr62ksj] {
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-item .value[b-lj8xr62ksj] {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.summary-item .value.highlight[b-lj8xr62ksj] {
    color: var(--accent-cyan);
    font-size: 1.3rem;
}

/* Fee Display */
.fee-display[b-lj8xr62ksj] {
    background: var(--gradient-1);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.fee-display i[b-lj8xr62ksj] {
    font-size: 1.2rem;
}

.fee-display strong[b-lj8xr62ksj] {
    font-size: 1.2rem;
}

/* Customer Selection */
.customer-selection[b-lj8xr62ksj] {
    max-height: 200px;
    overflow-y: auto;
    background: rgba(26, 26, 46, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.customer-checkbox[b-lj8xr62ksj] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.customer-checkbox:hover[b-lj8xr62ksj] {
    background: rgba(108, 92, 231, 0.1);
}

.customer-checkbox input[type="checkbox"][b-lj8xr62ksj] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-purple);
}

.customer-checkbox span[b-lj8xr62ksj] {
    color: var(--text-primary);
    font-weight: 500;
}

/* Button Variants */
.btn-warning[b-lj8xr62ksj] {
    background: rgba(255, 193, 7, 0.2) !important;
    border: 2px solid #ffc107 !important;
    color: #ffc107 !important;
}

.btn-warning:hover[b-lj8xr62ksj] {
    background: #ffc107 !important;
    color: #000 !important;
}

/* Card Header Section */
.card-header-section[b-lj8xr62ksj] {
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(108, 92, 231, 0.2);
}

.card-header-section h3[b-lj8xr62ksj] {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-header-section h3 i[b-lj8xr62ksj] {
    color: var(--primary-purple);
}

/* Session Details in Cards */
.session-details[b-lj8xr62ksj] {
    background: rgba(26, 26, 46, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 1rem;
}

/* Live Timer Container */
.live-timer-container[b-lj8xr62ksj] {
    margin-bottom: 1rem;
}

.live-timer[b-lj8xr62ksj] {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2), rgba(0, 206, 201, 0.2));
    border: 2px solid rgba(0, 206, 201, 0.4);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 206, 201, 0.2);
    animation: timerPulse-b-lj8xr62ksj 2s ease-in-out infinite;
}

.live-timer[b-lj8xr62ksj]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 206, 201, 0.1), transparent);
    animation: timerShine-b-lj8xr62ksj 3s linear infinite;
}

@keyframes timerPulse-b-lj8xr62ksj {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 206, 201, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 206, 201, 0.4), 0 0 40px rgba(108, 92, 231, 0.2);
    }
}

@keyframes timerShine-b-lj8xr62ksj {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.live-timer i[b-lj8xr62ksj] {
    font-size: 1.8rem;
    color: var(--accent-cyan);
    animation: timerIconSpin-b-lj8xr62ksj 4s linear infinite;
    z-index: 1;
}

@keyframes timerIconSpin-b-lj8xr62ksj {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.timer-value[b-lj8xr62ksj] {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow: 0 0 10px rgba(0, 206, 201, 0.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
    z-index: 1;
    direction: ltr;
}

.timer-label[b-lj8xr62ksj] {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.detail-row[b-lj8xr62ksj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
}

/* Scrollbar for modal */
.gaming-modal[b-lj8xr62ksj]::-webkit-scrollbar {
    width: 8px;
}

.gaming-modal[b-lj8xr62ksj]::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 4px;
}

.gaming-modal[b-lj8xr62ksj]::-webkit-scrollbar-thumb {
    background: var(--gradient-1);
    border-radius: 4px;
}

.gaming-modal[b-lj8xr62ksj]::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-2);
}

.customer-selection[b-lj8xr62ksj]::-webkit-scrollbar {
    width: 6px;
}

.customer-selection[b-lj8xr62ksj]::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.5);
    border-radius: 3px;
}

.customer-selection[b-lj8xr62ksj]::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .gaming-modal[b-lj8xr62ksj] {
        width: 95%;
        max-height: 95vh;
    }

    .modal-header[b-lj8xr62ksj] {
        padding: 1rem 1.5rem;
    }

    .modal-body[b-lj8xr62ksj] {
        padding: 1.5rem;
    }

    .modal-actions[b-lj8xr62ksj] {
        flex-direction: column;
    }

    .modal-actions button[b-lj8xr62ksj] {
        width: 100%;
        min-width: auto;
    }

    .charts-container[b-lj8xr62ksj] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Transactions/Index.razor.rz.scp.css */
.filter-title[b-07pgj3sjs2] {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.filter-row[b-07pgj3sjs2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.filter-item label[b-07pgj3sjs2] {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.select-input[b-07pgj3sjs2],
.input-field[b-07pgj3sjs2] {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.select-input:focus[b-07pgj3sjs2],
.input-field:focus[b-07pgj3sjs2] {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.filter-actions[b-07pgj3sjs2] {
    grid-column: 1 / -1;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.btn-filter[b-07pgj3sjs2],
.btn-clear[b-07pgj3sjs2] {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-filter[b-07pgj3sjs2] {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-filter:hover[b-07pgj3sjs2] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

.btn-clear[b-07pgj3sjs2] {
    background: var(--card-bg);
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.btn-clear:hover[b-07pgj3sjs2] {
    background: var(--bg-color);
}

.report-summary[b-07pgj3sjs2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--border-color);
}

.summary-item[b-07pgj3sjs2] {
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
}

.summary-item.income[b-07pgj3sjs2] {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.summary-item.outcome[b-07pgj3sjs2] {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
}

.summary-item.net[b-07pgj3sjs2] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 2px solid rgba(139, 92, 246, 0.2);
}

.summary-item i[b-07pgj3sjs2] {
    font-size: 2rem;
    opacity: 0.8;
}

.summary-item.income i[b-07pgj3sjs2] {
    color: #10b981;
}

.summary-item.outcome i[b-07pgj3sjs2] {
    color: #ef4444;
}

.summary-item.net i[b-07pgj3sjs2] {
    color: var(--primary-color);
}

.summary-item .label[b-07pgj3sjs2] {
    font-size: 0.95rem;
    opacity: 0.8;
    color: var(--text-color);
}

.summary-item .value[b-07pgj3sjs2] {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.summary-item .value.positive[b-07pgj3sjs2] {
    color: #10b981;
}

.summary-item .value.negative[b-07pgj3sjs2] {
    color: #ef4444;
}

.transactions-table[b-07pgj3sjs2] {
    overflow-x: auto;
    margin-top: 20px;
}

.transactions-table table[b-07pgj3sjs2] {
    width: 100%;
    border-collapse: collapse;
}

.transactions-table th[b-07pgj3sjs2] {
    background: var(--bg-color);
    padding: 15px;
    text-align: right;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
}

.transactions-table td[b-07pgj3sjs2] {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.transactions-table tr:hover[b-07pgj3sjs2] {
    background: var(--bg-color);
}

.type-badge[b-07pgj3sjs2] {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.type-badge.income[b-07pgj3sjs2] {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.type-badge.outcome[b-07pgj3sjs2] {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.amount[b-07pgj3sjs2] {
    font-weight: 700;
    font-size: 1.1rem;
}

.amount.income-text[b-07pgj3sjs2] {
    color: #10b981;
}

.amount.outcome-text[b-07pgj3sjs2] {
    color: #ef4444;
}

@media (max-width: 768px) {
    .filter-row[b-07pgj3sjs2] {
        grid-template-columns: 1fr;
    }

    .report-summary[b-07pgj3sjs2] {
        grid-template-columns: 1fr;
    }

    .transactions-table[b-07pgj3sjs2] {
        font-size: 0.9rem;
    }

    .transactions-table th[b-07pgj3sjs2],
    .transactions-table td[b-07pgj3sjs2] {
        padding: 10px;
    }
}
/* /Pages/Users/Add.razor.rz.scp.css */
.form-group[b-eaffls6ths] {
    margin-bottom: 1.5rem;
}

.form-label[b-eaffls6ths] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label i[b-eaffls6ths] {
    color: var(--primary-purple);
}

.required[b-eaffls6ths] {
    color: var(--secondary-pink);
}

.form-input[b-eaffls6ths],
.form-textarea[b-eaffls6ths],
.form-select[b-eaffls6ths] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(108, 92, 231, 0.05);
    border: 2px solid rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus[b-eaffls6ths],
.form-textarea:focus[b-eaffls6ths],
.form-select:focus[b-eaffls6ths] {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(108, 92, 231, 0.1);
}

.form-textarea[b-eaffls6ths] {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox-group[b-eaffls6ths] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox[b-eaffls6ths] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.validation-error[b-eaffls6ths] {
    color: var(--secondary-pink);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-actions[b-eaffls6ths] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button[b-eaffls6ths] {
    flex: 1;
}

.success-message[b-eaffls6ths] {
    background: rgba(0, 206, 201, 0.1);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.error-message[b-eaffls6ths] {
    background: rgba(253, 121, 168, 0.1);
    border: 2px solid var(--secondary-pink);
    color: var(--secondary-pink);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .form-actions[b-eaffls6ths] {
        flex-direction: column;
    }

    .form-actions button[b-eaffls6ths] {
        width: 100%;
    }
}
/* /Pages/Users/Edit.razor.rz.scp.css */
.form-group[b-8ifzujzrb3] {
    margin-bottom: 1.5rem;
}

.form-label[b-8ifzujzrb3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label i[b-8ifzujzrb3] {
    color: var(--primary-purple);
}

.required[b-8ifzujzrb3] {
    color: var(--secondary-pink);
}

.form-input[b-8ifzujzrb3],
.form-textarea[b-8ifzujzrb3],
.form-select[b-8ifzujzrb3] {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(108, 92, 231, 0.05);
    border: 2px solid rgba(108, 92, 231, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s;
    font-family: inherit;
}

.form-input:focus[b-8ifzujzrb3],
.form-textarea:focus[b-8ifzujzrb3],
.form-select:focus[b-8ifzujzrb3] {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(108, 92, 231, 0.1);
}

.form-textarea[b-8ifzujzrb3] {
    resize: vertical;
    min-height: 100px;
}

.form-checkbox-group[b-8ifzujzrb3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox[b-8ifzujzrb3] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.validation-error[b-8ifzujzrb3] {
    color: var(--secondary-pink);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.form-actions[b-8ifzujzrb3] {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions button[b-8ifzujzrb3] {
    flex: 1;
}

.success-message[b-8ifzujzrb3] {
    background: rgba(0, 206, 201, 0.1);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.error-message[b-8ifzujzrb3] {
    background: rgba(253, 121, 168, 0.1);
    border: 2px solid var(--secondary-pink);
    color: var(--secondary-pink);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .form-actions[b-8ifzujzrb3] {
        flex-direction: column;
    }

    .form-actions button[b-8ifzujzrb3] {
        width: 100%;
    }
}
/* /Pages/Users/Index.razor.rz.scp.css */
.page-header[b-qlsi9kda0j] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.search-box[b-qlsi9kda0j] {
    position: relative;
    margin-bottom: 2rem;
}

.search-box i[b-qlsi9kda0j] {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.search-input[b-qlsi9kda0j] {
    width: 100%;
    padding: 1rem 1rem 1rem 3.5rem;
    background: rgba(108, 92, 231, 0.05);
    border: 2px solid rgba(108, 92, 231, 0.1);
    border-radius: 15px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s;
}

.search-input:focus[b-qlsi9kda0j] {
    outline: none;
    border-color: var(--primary-purple);
    background: rgba(108, 92, 231, 0.1);
}

.users-grid[b-qlsi9kda0j] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.user-card[b-qlsi9kda0j] {
    background: rgba(26, 26, 46, 0.5);
    border: 2px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.user-card:hover[b-qlsi9kda0j] {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-neon);
}

.user-header[b-qlsi9kda0j] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar[b-qlsi9kda0j] {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.user-info[b-qlsi9kda0j] {
    flex: 1;
}

.user-name[b-qlsi9kda0j] {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.user-username[b-qlsi9kda0j] {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.user-status[b-qlsi9kda0j] {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.user-status.active[b-qlsi9kda0j] {
    background: rgba(0, 206, 201, 0.2);
    color: var(--accent-cyan);
}

.user-status.inactive[b-qlsi9kda0j] {
    background: rgba(253, 121, 168, 0.2);
    color: var(--secondary-pink);
}

.user-actions[b-qlsi9kda0j] {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.btn-action[b-qlsi9kda0j] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-edit[b-qlsi9kda0j] {
    background: rgba(108, 92, 231, 0.15);
    color: var(--primary-purple);
}

.btn-edit:hover[b-qlsi9kda0j] {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-delete[b-qlsi9kda0j] {
    background: rgba(253, 121, 168, 0.15);
    color: var(--secondary-pink);
}

.btn-delete:hover[b-qlsi9kda0j] {
    background: var(--secondary-pink);
    color: white;
    transform: translateY(-2px);
}

.error-message[b-qlsi9kda0j] {
    background: rgba(253, 121, 168, 0.1);
    border: 2px solid var(--secondary-pink);
    color: var(--secondary-pink);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.error-message i[b-qlsi9kda0j] {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.no-data[b-qlsi9kda0j] {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-data i[b-qlsi9kda0j] {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .users-grid[b-qlsi9kda0j] {
        grid-template-columns: 1fr;
    }

    .page-header[b-qlsi9kda0j] {
        flex-direction: column;
        align-items: stretch;
    }

    .page-header .btn-gaming[b-qlsi9kda0j] {
        width: 100%;
    }
}
