/* _content/SfwBot.Web/Components/AuditLogDisplayComponent.razor.rz.scp.css */
/* Dark Theme Audit Log */
.audit-log-container[b-z06votcv4e] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.audit-log-header[b-z06votcv4e] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audit-log-title[b-z06votcv4e] {
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.audit-log-title i[b-z06votcv4e] {
    color: #6366f1;
    font-size: 0.95rem;
}

.audit-log-controls[b-z06votcv4e] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.audit-log-loading[b-z06votcv4e],
.audit-log-empty[b-z06votcv4e] {
    padding: 3rem 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.audit-log-list[b-z06votcv4e] {
    max-height: 500px;
    overflow-y: auto;
}

.audit-log-item[b-z06votcv4e] {
    display: flex;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.audit-log-item:hover[b-z06votcv4e] {
    background-color: rgba(255, 255, 255, 0.03);
}

.audit-log-item:last-child[b-z06votcv4e] {
    border-bottom: none;
}

.audit-log-icon[b-z06votcv4e] {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: rgba(99, 102, 241, 0.15);
    margin-right: 0.85rem;
}

.audit-log-icon i[b-z06votcv4e] {
    font-size: 0.9rem;
    color: #a5b4fc !important;
}

/* Override colored icon classes */
.audit-log-icon i.text-primary[b-z06votcv4e],
.audit-log-icon i.text-success[b-z06votcv4e],
.audit-log-icon i.text-danger[b-z06votcv4e],
.audit-log-icon i.text-warning[b-z06votcv4e],
.audit-log-icon i.text-info[b-z06votcv4e] {
    color: #a5b4fc !important;
}

.audit-log-content[b-z06votcv4e] {
    flex: 1;
    min-width: 0;
}

.audit-log-action[b-z06votcv4e] {
    margin-bottom: 0.25rem;
}

.action-type[b-z06votcv4e] {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
}

.action-details[b-z06votcv4e] {
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

.audit-log-meta[b-z06votcv4e] {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.audit-log-footer[b-z06votcv4e] {
    padding: 1rem 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

/* Load More Button */
.audit-log-footer .btn[b-z06votcv4e] {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.audit-log-footer .btn:hover[b-z06votcv4e] {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

/* Scrollbar Styling */
.audit-log-list[b-z06votcv4e]::-webkit-scrollbar {
    width: 8px;
}

.audit-log-list[b-z06votcv4e]::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
}

.audit-log-list[b-z06votcv4e]::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.audit-log-list[b-z06votcv4e]::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile responsiveness */
@media (max-width: 576px) {
    .audit-log-header[b-z06votcv4e] {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
        padding: 1rem;
    }

    .audit-log-title[b-z06votcv4e] {
        font-size: 1rem;
    }

    .audit-log-meta[b-z06votcv4e] {
        flex-direction: column;
        gap: 0.35rem;
    }

    .audit-log-item[b-z06votcv4e] {
        padding: 0.85rem 1rem;
    }

    .audit-log-icon[b-z06votcv4e] {
        width: 32px;
        height: 32px;
        margin-right: 0.75rem;
    }

    .action-type[b-z06votcv4e] {
        font-size: 0.9rem;
    }

    .action-details[b-z06votcv4e] {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}

/* _content/SfwBot.Web/Components/BotAddConfirmationModal.razor.rz.scp.css */
.modal-backdrop[b-7egimktdvt] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    animation: fadeIn-b-7egimktdvt 0.15s ease-out;
}

.modal-dialog[b-7egimktdvt] {
    max-width: 500px;
    width: 90%;
    animation: slideIn-b-7egimktdvt 0.15s ease-out;
}

.modal-content[b-7egimktdvt] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.modal-header[b-7egimktdvt] {
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title[b-7egimktdvt] {
    margin: 0;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-title i[b-7egimktdvt] {
    color: #7289da;
}

.btn-close[b-7egimktdvt] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-close:hover[b-7egimktdvt] {
    color: #333;
}

.btn-close[b-7egimktdvt]::before {
    content: "×";
}

.modal-body[b-7egimktdvt] {
    padding: 20px 24px;
}

.server-info-section[b-7egimktdvt] {
    margin-bottom: 20px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.server-preview[b-7egimktdvt] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.server-icon[b-7egimktdvt] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #e9ecef;
    object-fit: cover;
}

.server-details h6[b-7egimktdvt] {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.confirmation-message[b-7egimktdvt] {
    margin-bottom: 20px;
}

.confirmation-message .lead[b-7egimktdvt] {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.permissions-info h6[b-7egimktdvt] {
    color: #333;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.permissions-info h6 i[b-7egimktdvt] {
    color: #28a745;
}

.permissions-grid[b-7egimktdvt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
}

.permission-item[b-7egimktdvt] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.permission-item i[b-7egimktdvt] {
    width: 16px;
    color: #28a745;
}

.modal-footer[b-7egimktdvt] {
    padding: 16px 24px 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn[b-7egimktdvt] {
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-secondary[b-7egimktdvt] {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover[b-7egimktdvt] {
    background: #5a6268;
}

.btn-success[b-7egimktdvt] {
    background: #28a745;
    color: white;
}

.btn-success:hover:not(:disabled)[b-7egimktdvt] {
    background: #218838;
}

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

@keyframes fadeIn-b-7egimktdvt {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn-b-7egimktdvt {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* _content/SfwBot.Web/Components/ConfirmationPopover.razor.rz.scp.css */
/* Confirmation Popover - Always on top z-index styling */
/* Following STYLE_GUIDE.md - Modals should be at z-index 9999 */
/* This confirmation dialog should appear above ALL other modals */

/* ============================================
   BACKDROP - Between main modal and confirmation dialog
   Bootstrap modal: ~1055, so backdrop needs to be higher
   ============================================ */

[b-zsl7p4yvuk] .confirmation-popover-backdrop {
    z-index: 1060 !important;
}

/* ============================================
   MODAL - Highest z-index for confirmation dialogs
   ============================================ */

[b-zsl7p4yvuk] .confirmation-popover-modal {
    z-index: 1065 !important;
}


/* Wrapper layer creates a dedicated stacking context above the main modal */
.confirmation-popover-layer[b-zsl7p4yvuk] {
    position: fixed;
    inset: 0;
    z-index: 1060; /* above Bootstrap modal (1055) */
}

/* Within the layer: backdrop below dialog */
[b-zsl7p4yvuk] .confirmation-popover-backdrop { z-index: 1 !important; }
[b-zsl7p4yvuk] .confirmation-popover-modal { z-index: 2 !important; }
/* _content/SfwBot.Web/Components/DetectionTypeConfigCard.razor.rz.scp.css */
.detection-type-card[b-v64cviyc26] {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.detection-type-card.enabled[b-v64cviyc26] {
    border-color: rgba(74, 222, 128, 0.3);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.1);
}

.detection-type-card.disabled[b-v64cviyc26] {
    opacity: 0.6;
}

.card-header-section[b-v64cviyc26] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.type-info[b-v64cviyc26] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.type-icon[b-v64cviyc26] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.type-icon.icon-nudity[b-v64cviyc26] {
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: white;
}

.type-icon.icon-violence[b-v64cviyc26] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.type-icon.icon-default[b-v64cviyc26] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.type-details[b-v64cviyc26] {
    flex: 1;
}

.type-name[b-v64cviyc26] {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.type-description[b-v64cviyc26] {
    margin: 0.25rem 0 0 0;
    font-size: 0.875rem;
    color: #9ca3af;
}

.type-toggle[b-v64cviyc26] {
    flex-shrink: 0;
}

.form-check-input[b-v64cviyc26] {
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-check-input:checked[b-v64cviyc26] {
    background-color: #4ade80;
    border-color: #4ade80;
}

.form-check-input:focus[b-v64cviyc26] {
    box-shadow: 0 0 0 0.25rem rgba(74, 222, 128, 0.25);
}

.form-check-label[b-v64cviyc26] {
    margin-left: 0.5rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.card-body-section[b-v64cviyc26] {
    padding: 1rem;
}

.threshold-control[b-v64cviyc26] {
    width: 100%;
}

.threshold-header[b-v64cviyc26] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.threshold-header .form-label[b-v64cviyc26] {
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

.threshold-value[b-v64cviyc26] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #4ade80;
}

.slider-labels[b-v64cviyc26] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.label-left[b-v64cviyc26],
.label-right[b-v64cviyc26] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.slider-container[b-v64cviyc26] {
    position: relative;
    width: 100%;
    height: 8px;
    margin-bottom: 1rem;
}

.threshold-slider[b-v64cviyc26] {
    position: relative;
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    outline: none;
    z-index: 2;
}

.threshold-slider[b-v64cviyc26]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
    transition: all 0.2s ease;
}

.threshold-slider[b-v64cviyc26]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.6);
}

.threshold-slider[b-v64cviyc26]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
    transition: all 0.2s ease;
}

.threshold-slider[b-v64cviyc26]::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.6);
}

.slider-track-fill[b-v64cviyc26] {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    border-radius: 4px;
    pointer-events: none;
    z-index: 1;
    transition: width 0.1s ease;
}

.threshold-description[b-v64cviyc26] {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
    color: #9ca3af;
    text-align: center;
}

/* Mobile Styles */
@media (max-width: 767px) {
    .card-header-section[b-v64cviyc26] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .type-info[b-v64cviyc26] {
        width: 100%;
    }

    .type-toggle[b-v64cviyc26] {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .type-icon[b-v64cviyc26] {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .type-name[b-v64cviyc26] {
        font-size: 1rem;
    }

    .type-description[b-v64cviyc26] {
        font-size: 0.8125rem;
    }

    .card-body-section[b-v64cviyc26] {
        padding: 1rem;
    }

    .threshold-header[b-v64cviyc26] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .threshold-value[b-v64cviyc26] {
        font-size: 1.5rem;
    }

    .slider-labels[b-v64cviyc26] {
        font-size: 0.6875rem;
    }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .type-icon[b-v64cviyc26] {
        width: 44px;
        height: 44px;
        font-size: 1.375rem;
    }
}

/* Alert Styles */
.alert[b-v64cviyc26] {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.alert-success[b-v64cviyc26] {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.alert-danger[b-v64cviyc26] {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* _content/SfwBot.Web/Components/DetectionTypeSelector.razor.rz.scp.css */
/* Detection Type Selector Styles */
.detection-type-selector[b-btwg0sbhue] {
    margin-bottom: 1.5rem;
}

/* Simple Mode Styles */
.simple-mode-info[b-btwg0sbhue] {
    padding: 0;
}

.simple-mode-info .alert[b-btwg0sbhue] {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    color: inherit;
    padding: 1rem;
    border-radius: 8px;
}

.advanced-mode-toggle[b-btwg0sbhue] {
    padding: 0.5rem 0;
}

.advanced-mode-toggle .btn-link[b-btwg0sbhue] {
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.advanced-mode-toggle .btn-link:hover[b-btwg0sbhue] {
    text-decoration: underline;
    color: #6366f1 !important;
}

.advanced-mode-toggle small[b-btwg0sbhue] {
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Advanced Mode Wrapper */
.advanced-mode-wrapper[b-btwg0sbhue] {
    animation: fadeIn-b-btwg0sbhue 0.3s ease-in-out;
}

@keyframes fadeIn-b-btwg0sbhue {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Detection Type Pills */
.detection-type-pills[b-btwg0sbhue] {
    padding: 0;
}

.detection-type-pills .form-label[b-btwg0sbhue] {
    color: inherit;
    font-size: 1rem;
}

.detection-type-pills .btn-group[b-btwg0sbhue] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.detection-type-pills .btn[b-btwg0sbhue] {
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.detection-type-pills .btn:not(:last-child)[b-btwg0sbhue] {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.detection-type-pills .btn-primary[b-btwg0sbhue] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-color: #6366f1;
    color: white;
}

.detection-type-pills .btn-outline-primary[b-btwg0sbhue] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    color: inherit;
}

.detection-type-pills .btn-outline-primary:hover[b-btwg0sbhue] {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    color: inherit;
}

.detection-type-pills .btn i[b-btwg0sbhue] {
    font-size: 0.9rem;
}

.detection-type-pills .badge[b-btwg0sbhue] {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    vertical-align: middle;
}

/* Alert Info Box */
.detection-type-pills .alert-info[b-btwg0sbhue] {
    background: rgba(13, 110, 253, 0.1);
    border: 1px solid rgba(13, 110, 253, 0.2);
    color: inherit;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.detection-type-pills .alert-info i[b-btwg0sbhue] {
    color: #6366f1;
}

/* Back to Simple Mode Button */
.detection-type-pills .btn-link[b-btwg0sbhue] {
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.detection-type-pills .btn-link:hover[b-btwg0sbhue] {
    text-decoration: underline;
    color: #6366f1 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .detection-type-pills .btn-group[b-btwg0sbhue] {
        flex-direction: column;
    }

    .detection-type-pills .btn[b-btwg0sbhue] {
        width: 100%;
        border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .detection-type-pills .btn:last-child[b-btwg0sbhue] {
        border-bottom: none;
    }

    .d-flex.justify-content-between[b-btwg0sbhue] {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
}

/* _content/SfwBot.Web/Components/EmptyState.razor.rz.scp.css */
/*
 * EmptyState Component Styles
 * Main styles are defined in shared-utilities.css (.empty-state, .empty-message, .error-state)
 * This file only contains component-specific overrides if needed
 */

/* No additional styles needed - all handled by shared stylesheets */
/* _content/SfwBot.Web/Components/FeatureCard.razor.rz.scp.css */
/*
 * FeatureCard Component Styles
 * Main styles are defined in shared-card-styles.css (.feature-card)
 * Icon styles are defined in shared-utilities.css (.icon-container-*)
 * This file only contains component-specific overrides if needed
 */

/* No additional styles needed - all handled by shared stylesheets */
/* _content/SfwBot.Web/Components/Footer.razor.rz.scp.css */
/* Footer */
.landing-footer[b-xu12quu45o] {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.footer-content[b-xu12quu45o] {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand[b-xu12quu45o] {
    max-width: 300px;
}

.brand-logo[b-xu12quu45o] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
}

.footer-logo-img[b-xu12quu45o] {
    height: 32px;
    width: auto;
}

.footer-brand p[b-xu12quu45o] {
    color: white;
    opacity: 0.7;
    line-height: 1.6;
}

.footer-links[b-xu12quu45o] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h6[b-xu12quu45o] {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white !important;
}

.link-group a[b-xu12quu45o] {
    display: block;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.link-group a:hover[b-xu12quu45o] {
    color: #6366f1 !important;
}

.footer-bottom[b-xu12quu45o] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p[b-xu12quu45o] {
    margin: 0;
    color: white;
    opacity: 0.7;
}

.social-links[b-xu12quu45o] {
    display: flex;
    gap: 1rem;
}

.social-links a[b-xu12quu45o] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover[b-xu12quu45o] {
    background: #6366f1 !important;
    border-color: #6366f1 !important;
    color: white !important;
    transform: translateY(-2px);
}

.topgg-icon[b-xu12quu45o] {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('/images/Top.gg.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.social-links a:hover .topgg-icon[b-xu12quu45o] {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content[b-xu12quu45o] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links[b-xu12quu45o] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links[b-xu12quu45o] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom[b-xu12quu45o] {
        flex-direction: column;
        text-align: center;
    }
}

/* _content/SfwBot.Web/Components/LandingPage.razor.rz.scp.css */
.landing-page[b-wl4cydwbzy] {
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Hero Section */
.hero-section[b-wl4cydwbzy] {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-background[b-wl4cydwbzy] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.gradient-orb[b-wl4cydwbzy] {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
    animation: float-b-wl4cydwbzy 25s ease-in-out infinite;
}

.orb-1[b-wl4cydwbzy] {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: -15%;
    left: -10%;
}

.orb-2[b-wl4cydwbzy] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    top: 40%;
    right: -10%;
    animation-delay: 8s;
}

.orb-3[b-wl4cydwbzy] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    bottom: -10%;
    left: 35%;
    animation-delay: 16s;
}

@keyframes float-b-wl4cydwbzy {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-row[b-wl4cydwbzy] {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 56px - 8rem);
}

.hero-content[b-wl4cydwbzy] {
    padding: 2rem 0;
}

.hero-badge[b-wl4cydwbzy] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 0.625rem 1.25rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.badge-dot[b-wl4cydwbzy] {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-dot-b-wl4cydwbzy 2s ease-in-out infinite;
}

@keyframes pulse-dot-b-wl4cydwbzy {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.hero-title[b-wl4cydwbzy] {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text[b-wl4cydwbzy] {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle[b-wl4cydwbzy] {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-actions[b-wl4cydwbzy] {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary-custom[b-wl4cydwbzy] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary-custom:hover[b-wl4cydwbzy] {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-secondary-custom[b-wl4cydwbzy] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover[b-wl4cydwbzy] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.hero-stats[b-wl4cydwbzy] {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item[b-wl4cydwbzy] {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number[b-wl4cydwbzy] {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stats .stat-label[b-wl4cydwbzy] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.stat-divider[b-wl4cydwbzy] {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual */
.hero-visual[b-wl4cydwbzy] {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.dashboard-preview[b-wl4cydwbzy] {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.preview-window[b-wl4cydwbzy] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.window-header[b-wl4cydwbzy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-dots[b-wl4cydwbzy] {
    display: flex;
    gap: 0.5rem;
}

.window-dots span[b-wl4cydwbzy] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-dots span:nth-child(1)[b-wl4cydwbzy] { background: #ff5f57; }
.window-dots span:nth-child(2)[b-wl4cydwbzy] { background: #ffbd2e; }
.window-dots span:nth-child(3)[b-wl4cydwbzy] { background: #28ca42; }

.window-title[b-wl4cydwbzy] {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.window-body[b-wl4cydwbzy] {
    padding: 1.5rem;
}

.stats-row[b-wl4cydwbzy] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card[b-wl4cydwbzy] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.stat-icon[b-wl4cydwbzy] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 10px;
    font-size: 1.125rem;
}

.stat-icon.danger[b-wl4cydwbzy] {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.stat-info[b-wl4cydwbzy] {
    flex: 1;
}

.stat-value[b-wl4cydwbzy] {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-name[b-wl4cydwbzy] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.activity-list[b-wl4cydwbzy] {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
}

.activity-header[b-wl4cydwbzy] {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.activity-entry[b-wl4cydwbzy] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.activity-entry:last-child[b-wl4cydwbzy] {
    margin-bottom: 0;
}

.activity-indicator[b-wl4cydwbzy] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-entry.blocked .activity-indicator[b-wl4cydwbzy] {
    background: #ef4444;
}

.activity-entry.safe .activity-indicator[b-wl4cydwbzy] {
    background: #10b981;
}

.activity-text[b-wl4cydwbzy] {
    flex: 1;
}

.activity-main[b-wl4cydwbzy] {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-sub[b-wl4cydwbzy] {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.floating-badges[b-wl4cydwbzy] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-badge[b-wl4cydwbzy] {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.float-badge i[b-wl4cydwbzy] {
    font-size: 1rem;
}

.badge-1[b-wl4cydwbzy] {
    top: 10%;
    right: -10%;
    animation: float-badge-b-wl4cydwbzy 6s ease-in-out infinite;
}

.badge-2[b-wl4cydwbzy] {
    bottom: 30%;
    left: -5%;
    animation: float-badge-b-wl4cydwbzy 7s ease-in-out infinite 2s;
}

.badge-3[b-wl4cydwbzy] {
    bottom: 10%;
    right: 5%;
    animation: float-badge-b-wl4cydwbzy 8s ease-in-out infinite 4s;
}

@keyframes float-badge-b-wl4cydwbzy {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features-section[b-wl4cydwbzy] {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1729 100%);
}

.section-header[b-wl4cydwbzy] {
    margin-bottom: 4rem;
}

.section-title[b-wl4cydwbzy] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle[b-wl4cydwbzy] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid[b-wl4cydwbzy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card[b-wl4cydwbzy] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.feature-icon-wrapper[b-wl4cydwbzy] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature-title[b-wl4cydwbzy] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description[b-wl4cydwbzy] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.feature-tags[b-wl4cydwbzy] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag[b-wl4cydwbzy] {
    padding: 0.375rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* How It Works Section */
.how-it-works-section[b-wl4cydwbzy] {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
}

.steps-flow[b-wl4cydwbzy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-card[b-wl4cydwbzy] {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
}

.step-number[b-wl4cydwbzy] {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.8);
    margin-bottom: 1rem;
}

.step-icon[b-wl4cydwbzy] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.step-title[b-wl4cydwbzy] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step-description[b-wl4cydwbzy] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.step-arrow[b-wl4cydwbzy] {
    font-size: 1.5rem;
    color: rgba(99, 102, 241, 0.5);
}

@media (max-width: 768px) {
    .step-arrow[b-wl4cydwbzy] {
        display: none;
    }
}

/* Testimonials Section */
.testimonials-section[b-wl4cydwbzy] {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1729 100%);
}

.testimonials-grid[b-wl4cydwbzy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card[b-wl4cydwbzy] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.quote-mark[b-wl4cydwbzy] {
    font-size: 2rem;
    color: rgba(99, 102, 241, 0.5);
    margin-bottom: 1rem;
}

.testimonial-text[b-wl4cydwbzy] {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.testimonial-author[b-wl4cydwbzy] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name[b-wl4cydwbzy] {
    font-size: 0.9375rem;
    font-weight: 600;
}

.author-source[b-wl4cydwbzy] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.btn-link-custom[b-wl4cydwbzy] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-link-custom:hover[b-wl4cydwbzy] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* CTA Section */
.cta-section[b-wl4cydwbzy] {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background[b-wl4cydwbzy] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-gradient[b-wl4cydwbzy] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.cta-content[b-wl4cydwbzy] {
    position: relative;
    z-index: 2;
}

.cta-title[b-wl4cydwbzy] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle[b-wl4cydwbzy] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions[b-wl4cydwbzy] {
    margin-bottom: 2rem;
}

.btn-cta-primary[b-wl4cydwbzy] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover[b-wl4cydwbzy] {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    color: white;
}

.cta-features[b-wl4cydwbzy] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-feature[b-wl4cydwbzy] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-feature i[b-wl4cydwbzy] {
    color: #10b981;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .hero-section[b-wl4cydwbzy] {
        min-height: auto;
    }

    .hero-row[b-wl4cydwbzy] {
        min-height: auto;
    }

    .hero-title[b-wl4cydwbzy] {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .floating-badges[b-wl4cydwbzy] {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title[b-wl4cydwbzy] {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

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

    .btn-primary-custom[b-wl4cydwbzy],
    .btn-secondary-custom[b-wl4cydwbzy] {
        width: 100%;
        justify-content: center;
    }

    .hero-stats[b-wl4cydwbzy] {
        flex-direction: column;
    }

    .stat-divider[b-wl4cydwbzy] {
        display: none;
    }

    .features-grid[b-wl4cydwbzy] {
        grid-template-columns: 1fr;
    }

    .steps-flow[b-wl4cydwbzy] {
        flex-direction: column;
    }

    .step-card[b-wl4cydwbzy] {
        max-width: 100%;
    }

    .testimonials-grid[b-wl4cydwbzy] {
        grid-template-columns: 1fr;
    }

    .cta-features[b-wl4cydwbzy] {
        flex-direction: column;
    }

    .btn-cta-primary[b-wl4cydwbzy] {
        width: 100%;
        justify-content: center;
    }
}
/* _content/SfwBot.Web/Components/LoadingSpinner.razor.rz.scp.css */
/*
 * LoadingSpinner Component Styles
 * Most styles are defined in shared-utilities.css
 * This file only contains component-specific overrides if needed
 */

/* Ensure inline spinners have proper spacing */
.loading-spinner:not(.loading-overlay .loading-spinner)[b-4pzu7nx0vj] {
    margin: 0 auto;
}

/* Center spinner when not in overlay mode */
.loading-spinner + .loading-message[b-4pzu7nx0vj] {
    text-align: center;
    margin-top: 0.75rem;
}
/* _content/SfwBot.Web/Components/LoginComponent.razor.rz.scp.css */
.login-container[b-r4eezfzqoa] {
    padding: 20px;
    text-align: center;
}

.user-info[b-r4eezfzqoa] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.user-avatar[b-r4eezfzqoa] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #7289da;
}

.user-details h4[b-r4eezfzqoa] {
    margin: 0 0 10px 0;
    color: #333;
}

.discord-login-btn[b-r4eezfzqoa] {
    background-color: #7289da;
    border-color: #7289da;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.discord-login-btn:hover[b-r4eezfzqoa] {
    background-color: #5b6eae;
    border-color: #5b6eae;
    color: white;
    text-decoration: none;
}

.login-prompt h4[b-r4eezfzqoa] {
    margin-bottom: 20px;
    color: #666;
}

/* _content/SfwBot.Web/Components/ModuleCard.razor.rz.scp.css */
/*
 * ModuleCard Component Styles
 * Main styles are defined in shared-card-styles.css (.module-card, .module-icon, .module-content, .module-title, .module-description, .module-arrow)
 * Icon styles are defined in shared-utilities.css (.icon-container-*)
 * This file only contains component-specific overrides if needed
 */

/* No additional styles needed - all handled by shared stylesheets */
/* _content/SfwBot.Web/Components/MultiSelectComponent.razor.rz.scp.css */
/* Search Input with Icon */
.search-wrapper[b-kkzp5cmx42] {
    position: relative;
}

.search-icon[b-kkzp5cmx42] {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 1;
}

.search-input[b-kkzp5cmx42] {
    padding-left: 2.25rem !important;
}

/* Selected Items Badge - Handle Long Names */
.multi-select-container .badge[b-kkzp5cmx42] {
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-align: left;
}

/* _content/SfwBot.Web/Components/PageHero.razor.rz.scp.css */
/* Shared Page Hero Styles - Matches Features and HowItWorks pages */

.page-hero[b-3ujdcuitpr] {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background[b-3ujdcuitpr] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb[b-3ujdcuitpr] {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.orb-1[b-3ujdcuitpr] {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -40%;
    left: -20%;
}

.orb-2[b-3ujdcuitpr] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: -20%;
    right: -15%;
}

.hero-content[b-3ujdcuitpr] {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav[b-3ujdcuitpr] {
    margin-bottom: 2rem;
}

.breadcrumb[b-3ujdcuitpr] {
    background: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 0.875rem;
}

.breadcrumb-item a[b-3ujdcuitpr] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover[b-3ujdcuitpr] {
    color: #6366f1;
}

.breadcrumb-item.active[b-3ujdcuitpr] {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item[b-3ujdcuitpr]::before {
    content: "›";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
}

.page-title[b-3ujdcuitpr] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.page-description[b-3ujdcuitpr] {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

.page-subdescription[b-3ujdcuitpr] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* _content/SfwBot.Web/Components/SectionHeader.razor.rz.scp.css */
/*
 * SectionHeader Component Styles
 * Main styles are defined in shared-utilities.css (.section-header, .section-title, .section-subtitle)
 * This file only contains component-specific overrides if needed
 */

/* No additional styles needed - all handled by shared stylesheets */
/* _content/SfwBot.Web/Components/ServerSelector.razor.rz.scp.css */
/* Modern Dark Server Selector */
.server-selector[b-pho9hgarn8] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.server-selector-loading[b-pho9hgarn8] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.7);
    gap: 0.75rem;
}

.server-selector-loading .spinner-border[b-pho9hgarn8] {
    border-color: #6366f1;
    border-right-color: transparent;
}

.server-selector-dropdown .form-label[b-pho9hgarn8] {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.server-selector-dropdown .form-label i[b-pho9hgarn8] {
    color: #6366f1;
    font-size: 1.125rem;
}

.server-selector-dropdown .form-select[b-pho9hgarn8] {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.server-selector-dropdown .form-select:focus[b-pho9hgarn8] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    outline: none;
}

.server-selector-dropdown .form-select:hover[b-pho9hgarn8] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.server-selector-dropdown .form-select option[b-pho9hgarn8] {
    background: #1a1f3a;
    color: #ffffff;
    padding: 0.75rem;
}

.server-selector-dropdown small[b-pho9hgarn8] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
}

.server-selector-dropdown small i[b-pho9hgarn8] {
    color: #6366f1;
    margin-right: 0.25rem;
}

.server-selector-dropdown small a[b-pho9hgarn8] {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.server-selector-dropdown small a:hover[b-pho9hgarn8] {
    color: #8b5cf6;
    text-decoration: underline;
}

.no-servers-message[b-pho9hgarn8] {
    text-align: center;
    padding: 3rem 2rem;
}

.no-servers-message i[b-pho9hgarn8] {
    color: rgba(255, 255, 255, 0.3);
}

.no-servers-message h5[b-pho9hgarn8] {
    color: #ffffff;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.no-servers-message p[b-pho9hgarn8] {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.no-servers-message .btn[b-pho9hgarn8] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.no-servers-message .btn:hover[b-pho9hgarn8] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.alert[b-pho9hgarn8] {
    border: none;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid;
}

.alert-warning[b-pho9hgarn8] {
    background: rgba(245, 158, 11, 0.1);
    border-left-color: #f59e0b;
    color: #fbbf24;
}

.alert i[b-pho9hgarn8] {
    margin-right: 0.5rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .server-selector[b-pho9hgarn8] {
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    /* Optimized server selector for mobile */
    .server-selector[b-pho9hgarn8] {
        padding: 1rem;
        border-radius: 12px;
    }

    .server-selector-dropdown .form-select[b-pho9hgarn8] {
        padding: 0.625rem 0.75rem;
        font-size: 0.9375rem;
    }

    .no-servers-message[b-pho9hgarn8] {
        padding: 1.5rem 1rem;
    }

    .no-servers-message h5[b-pho9hgarn8] {
        font-size: 1rem;
    }

    .no-servers-message .btn[b-pho9hgarn8] {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .server-selector-loading[b-pho9hgarn8] {
        padding: 1.5rem;
    }
}
/* _content/SfwBot.Web/Components/SettingsPageBase.razor.rz.scp.css */
/* Dashboard Page - Modern Dark Theme */

/* Base Styles */
.dashboard-page[b-hetbugnvgx] {
    min-height: 100vh;
    color: #ffffff;
    padding-top: 0;
    position: relative;
}

/* Background Effects */
.dashboard-background[b-hetbugnvgx] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb[b-hetbugnvgx] {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
}

.orb-1[b-hetbugnvgx] {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -20%;
    right: -10%;
}

.orb-2[b-hetbugnvgx] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    bottom: -20%;
    left: -10%;
}

/* Container */
.dashboard-page .container-xxl[b-hetbugnvgx] {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Breadcrumb Navigation */
.breadcrumb-nav[b-hetbugnvgx] {
    margin-bottom: 1.5rem;
}

.breadcrumb[b-hetbugnvgx] {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.breadcrumb-item a[b-hetbugnvgx] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover[b-hetbugnvgx] {
    color: #6366f1;
}

.breadcrumb-item.active[b-hetbugnvgx] {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-item + .breadcrumb-item[b-hetbugnvgx]::before {
    content: "›";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
}

/* Page Header */
.page-header[b-hetbugnvgx] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.header-icon[b-hetbugnvgx] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    font-size: 1.75rem;
    flex-shrink: 0;
}

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

.page-title[b-hetbugnvgx] {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.page-subtitle[b-hetbugnvgx] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Content Area */
.page-content[b-hetbugnvgx] {
    /* Spacious, not cluttered */
}

/* Alert Cards */
.alert-card[b-hetbugnvgx] {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.alert-card.alert-warning[b-hetbugnvgx] {
    border-left: 4px solid #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.alert-card.alert-danger[b-hetbugnvgx] {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.alert-icon[b-hetbugnvgx] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-warning .alert-icon[b-hetbugnvgx] {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.alert-danger .alert-icon[b-hetbugnvgx] {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

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

.alert-content h4[b-hetbugnvgx] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.alert-content p[b-hetbugnvgx] {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.btn-alert[b-hetbugnvgx] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-alert:hover[b-hetbugnvgx] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    color: white;
}


/* Shared Settings Card Styles */
[b-hetbugnvgx] .settings-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
}

/* Override Bootstrap Card Styles for Dark Theme */
[b-hetbugnvgx] .card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
}

[b-hetbugnvgx] .card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
}

[b-hetbugnvgx] .card-header h6,
[b-hetbugnvgx] .card-header h5,
[b-hetbugnvgx] .card-header h4 {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

[b-hetbugnvgx] .card-body {
    padding: 1.25rem;
}

[b-hetbugnvgx] .card-title {
    color: #ffffff;
    font-weight: 600;
}

/* Text Color Overrides */
[b-hetbugnvgx] .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

[b-hetbugnvgx] .text-primary {
    color: #6366f1 !important;
}

[b-hetbugnvgx] small {
    color: rgba(255, 255, 255, 0.7);
}

[b-hetbugnvgx] p {
    color: rgba(255, 255, 255, 0.8);
}

[b-hetbugnvgx] h1, [b-hetbugnvgx] h2, [b-hetbugnvgx] h3,
[b-hetbugnvgx] h4, [b-hetbugnvgx] h5, [b-hetbugnvgx] h6 {
    color: #ffffff;
}

/* Form Elements - Dark Theme */
[b-hetbugnvgx] .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 0.25rem;
}

[b-hetbugnvgx] .form-control,
[b-hetbugnvgx] .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9375rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

[b-hetbugnvgx] .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    appearance: none;
}

[b-hetbugnvgx] .form-control:focus,
[b-hetbugnvgx] .form-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[b-hetbugnvgx] .form-select:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

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

[b-hetbugnvgx] .form-select option {
    background: #1a1f3a;
    color: #ffffff;
}

/* File Upload Input */
[b-hetbugnvgx] input[type="file"].form-control {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
}

[b-hetbugnvgx] input[type="file"].form-control:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

[b-hetbugnvgx] input[type="file"].form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

[b-hetbugnvgx] input[type="file"].form-control::file-selector-button {
    padding: 0.5rem 1.25rem;
    margin-right: 1.25rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

[b-hetbugnvgx] input[type="file"].form-control::file-selector-button:hover {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    transform: translateY(-1px);
}

[b-hetbugnvgx] .form-text {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 0.25rem;
}

/* Form Check (Checkboxes & Switches) */
[b-hetbugnvgx] .form-check-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

[b-hetbugnvgx] .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

[b-hetbugnvgx] .form-check-input:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

[b-hetbugnvgx] .form-check-input:focus {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(99, 102, 241, 0.25);
}

/* Buttons - Dark Theme */
[b-hetbugnvgx] .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: none;
}

[b-hetbugnvgx] .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

[b-hetbugnvgx] .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

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

[b-hetbugnvgx] .btn-outline-primary {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.5);
    color: #6366f1;
}

[b-hetbugnvgx] .btn-outline-primary:hover:not(:disabled) {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
}

[b-hetbugnvgx] .btn-outline-danger {
    background: transparent;
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

[b-hetbugnvgx] .btn-outline-danger:hover:not(:disabled) {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

[b-hetbugnvgx] .btn-outline-warning {
    background: transparent;
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #f59e0b;
}

[b-hetbugnvgx] .btn-outline-warning:hover:not(:disabled) {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
}

[b-hetbugnvgx] .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Alerts - Dark Theme */
[b-hetbugnvgx] .alert {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: none;
    margin-bottom: 1.5rem;
}

[b-hetbugnvgx] .alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    color: #34d399;
}

[b-hetbugnvgx] .alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    color: #f87171;
}

[b-hetbugnvgx] .alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid #f59e0b;
    color: #fbbf24;
}

[b-hetbugnvgx] .alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    color: #60a5fa;
}

/* Tabs - Dark Theme */
[b-hetbugnvgx] .nav-tabs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
}

/* Main page tabs (outside cards) */
[b-hetbugnvgx] .settings-card > .nav-tabs {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Nested tabs inside cards */
[b-hetbugnvgx] .card-body .nav-tabs {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
}

[b-hetbugnvgx] .nav-tabs .nav-link {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: rgba(255, 255, 255, 0.6);
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

[b-hetbugnvgx] .nav-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(99, 102, 241, 0.5);
}

[b-hetbugnvgx] .nav-tabs .nav-link.active {
    color: #ffffff;
    border-bottom-color: #6366f1;
    background: transparent;
}

[b-hetbugnvgx] .tab-content {
    padding: 0;
}

[b-hetbugnvgx] .tab-pane {
    padding: 0;
}

/* Spinner */
[b-hetbugnvgx] .spinner-border {
    border-color: #6366f1;
    border-right-color: transparent;
}

/* Button Spinners - Override for better contrast */
[b-hetbugnvgx] .btn .spinner-border {
    border-color: rgba(255, 255, 255, 0.3);
    border-right-color: transparent;
    border-top-color: rgba(255, 255, 255, 0.9);
}

/* Threshold Mode Component Overrides */
[b-hetbugnvgx] .threshold-mode-container {
    color: #ffffff;
}

[b-hetbugnvgx] .mode-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

[b-hetbugnvgx] .mode-card:not(.active):hover {
    border-color: rgba(99, 102, 241, 0.5) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2) !important;
}

[b-hetbugnvgx] .mode-card.active {
    border-color: #6366f1 !important;
    background: rgba(99, 102, 241, 0.1) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
}

[b-hetbugnvgx] .mode-icon {
    color: #6366f1 !important;
}

[b-hetbugnvgx] .mode-card.active .mode-icon {
    color: #8b5cf6 !important;
}

[b-hetbugnvgx] .mode-name {
    color: #ffffff !important;
}

[b-hetbugnvgx] .mode-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

[b-hetbugnvgx] .mode-value {
    color: rgba(255, 255, 255, 0.6) !important;
}

[b-hetbugnvgx] .mode-checkmark {
    color: #10b981 !important;
}

[b-hetbugnvgx] .threshold-slider {
    background: rgba(255, 255, 255, 0.1);
}

[b-hetbugnvgx] .slider-labels {
    color: rgba(255, 255, 255, 0.8);
}

[b-hetbugnvgx] .threshold-info {
    color: rgba(255, 255, 255, 0.7);
}

/* Image Test Status Cards */
[b-hetbugnvgx] .status-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

[b-hetbugnvgx] .status-card.status-active {
    border-color: rgba(16, 185, 129, 0.5) !important;
    background: rgba(16, 185, 129, 0.05) !important;
}

[b-hetbugnvgx] .status-card.status-inactive {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .status-icon {
    color: rgba(255, 255, 255, 0.6);
}

[b-hetbugnvgx] .status-card.status-active .status-icon {
    color: #10b981 !important;
}

[b-hetbugnvgx] .status-content h6 {
    color: #ffffff !important;
}

[b-hetbugnvgx] .status-content p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Threshold Slider Container */
[b-hetbugnvgx] .threshold-slider-container {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff;
}

[b-hetbugnvgx] .advanced-mode-wrapper {
    color: #ffffff;
}

[b-hetbugnvgx] .slider-labels span {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Loading States */
[b-hetbugnvgx] .loading-state,
[b-hetbugnvgx] .threshold-loading {
    color: rgba(255, 255, 255, 0.8);
}

[b-hetbugnvgx] .loading-state .spinner,
[b-hetbugnvgx] .threshold-loading .spinner-border {
    border-color: #6366f1;
    border-right-color: transparent;
}

/* Message States */
[b-hetbugnvgx] .message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

[b-hetbugnvgx] .message.error {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    color: #f87171;
}

[b-hetbugnvgx] .message.success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
    color: #34d399;
}

[b-hetbugnvgx] .message-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
    margin-top: -0.25rem;
}

[b-hetbugnvgx] .message-close:hover {
    opacity: 1;
}

/* List Groups */
[b-hetbugnvgx] .list-group {
    background: transparent;
}

[b-hetbugnvgx] .list-group-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
    border-radius: 8px !important;
}

[b-hetbugnvgx] .list-group-item:hover {
    background: rgba(255, 255, 255, 0.06) !important;
}

[b-hetbugnvgx] .list-group-item-action {
    cursor: pointer;
}

[b-hetbugnvgx] .list-group-item-action:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
}

[b-hetbugnvgx] .list-group-item code {
    background: rgba(255, 255, 255, 0.1);
    color: #a5b4fc !important;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Code Elements */
[b-hetbugnvgx] code {
    background: rgba(255, 255, 255, 0.1);
    color: #a5b4fc;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Images */
[b-hetbugnvgx] .img-fluid {
    border-radius: 8px;
}

/* Badges */
[b-hetbugnvgx] .badge {
    font-weight: 600;
}

[b-hetbugnvgx] .badge.bg-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
}

[b-hetbugnvgx] .badge.bg-success {
    background: #10b981 !important;
}

[b-hetbugnvgx] .badge.bg-danger {
    background: #ef4444 !important;
}

[b-hetbugnvgx] .badge.bg-warning {
    background: #f59e0b !important;
    color: #000000 !important;
}

[b-hetbugnvgx] .badge.bg-info {
    background: #3b82f6 !important;
}

/* Input Groups */
[b-hetbugnvgx] .input-group-text {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

[b-hetbugnvgx] .input-group .form-control {
    border-left: none;
}

[b-hetbugnvgx] .input-group .form-control:focus {
    border-left: 1px solid rgba(99, 102, 241, 0.4);
}

/* Multi-Select Component */
[b-hetbugnvgx] .multi-select-container {
    color: #ffffff;
}

[b-hetbugnvgx] .multi-select-container .border {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
}

[b-hetbugnvgx] .selected-items .badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
}

[b-hetbugnvgx] .btn-close-white {
    filter: brightness(1) invert(0);
    opacity: 0.8;
}

[b-hetbugnvgx] .btn-close-white:hover {
    opacity: 1;
}

/* Empty States */
[b-hetbugnvgx] .text-center.py-3 {
    color: rgba(255, 255, 255, 0.6);
}

/* Scrollbar Styling for Dark Theme */
[b-hetbugnvgx] *::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

[b-hetbugnvgx] *::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

[b-hetbugnvgx] *::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

[b-hetbugnvgx] *::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Modals */
[b-hetbugnvgx] .modal-content {
    background: #1a1f3a !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

[b-hetbugnvgx] .modal-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

[b-hetbugnvgx] .modal-title {
    color: #ffffff !important;
}

[b-hetbugnvgx] .modal-body {
    color: rgba(255, 255, 255, 0.9);
}

[b-hetbugnvgx] .modal-footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[b-hetbugnvgx] .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

[b-hetbugnvgx] .btn-close:hover {
    opacity: 1;
}

[b-hetbugnvgx] .modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Alert Light Override */
[b-hetbugnvgx] .alert-light {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Utility Classes */
[b-hetbugnvgx] .bg-light {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

[b-hetbugnvgx] .bg-white {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

[b-hetbugnvgx] .border {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .border-top,
[b-hetbugnvgx] .border-bottom,
[b-hetbugnvgx] .border-start,
[b-hetbugnvgx] .border-end {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .text-dark {
    color: rgba(255, 255, 255, 0.9) !important;
}

[b-hetbugnvgx] .text-secondary {
    color: rgba(255, 255, 255, 0.7) !important;
}

[b-hetbugnvgx] .text-success {
    color: #10b981 !important;
}

[b-hetbugnvgx] .text-danger {
    color: #ef4444 !important;
}

[b-hetbugnvgx] .text-warning {
    color: #f59e0b !important;
}

[b-hetbugnvgx] .text-info {
    color: #3b82f6 !important;
}

/* Strong/Bold Text */
[b-hetbugnvgx] strong,
[b-hetbugnvgx] b {
    color: #ffffff;
    font-weight: 600;
}

/* Links */
[b-hetbugnvgx] a {
    color: #6366f1;
    text-decoration: none;
}

[b-hetbugnvgx] a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}
/* Do not underline Quick Settings module cards or their icons on hover */
[b-hetbugnvgx] .modules-grid .module-card,
[b-hetbugnvgx] .modules-grid .module-card:hover,
[b-hetbugnvgx] .modules-grid .module-card .module-title,
[b-hetbugnvgx] .modules-grid .module-card .module-description,
[b-hetbugnvgx] .modules-grid .module-card i {
    text-decoration: none !important;
}


/* HR Divider */
[b-hetbugnvgx] hr {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* CRITICAL: Override settings.css white backgrounds */
[b-hetbugnvgx] .whitelist-settings,
[b-hetbugnvgx] .blacklist-settings {
    background: transparent !important;
    color: #ffffff !important;
}

[b-hetbugnvgx] .loading-state {
    color: rgba(255, 255, 255, 0.8) !important;
}

[b-hetbugnvgx] .spinner {
    border-color: rgba(255, 255, 255, 0.2) !important;
    border-top-color: #6366f1 !important;
}

[b-hetbugnvgx] .settings-grid {
    background: transparent !important;
}

/* Override settings.css .settings-card */
[b-hetbugnvgx] .whitelist-settings .settings-card,
[b-hetbugnvgx] .blacklist-settings .settings-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

[b-hetbugnvgx] .card-content {
    background: transparent !important;
    color: #ffffff !important;
}

[b-hetbugnvgx] .list-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

[b-hetbugnvgx] .list-item span {
    color: rgba(255, 255, 255, 0.9) !important;
}

[b-hetbugnvgx] .hash-display {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #a5b4fc !important;
}

[b-hetbugnvgx] .empty-state {
    color: rgba(255, 255, 255, 0.5) !important;
}

[b-hetbugnvgx] .selected-file {
    background: rgba(255, 255, 255, 0.06) !important;
    color: #ffffff !important;
}

[b-hetbugnvgx] .selected-file span {
    color: rgba(255, 255, 255, 0.9) !important;
}

[b-hetbugnvgx] .upload-content span {
    color: rgba(255, 255, 255, 0.8) !important;
}

[b-hetbugnvgx] .upload-content small {
    color: rgba(255, 255, 255, 0.6) !important;
}

[b-hetbugnvgx] .save-section {
    border-top-color: rgba(255, 255, 255, 0.1) !important;
}

/* Override site.css card headers */
[b-hetbugnvgx] .dashboard-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .card .card-header,
[b-hetbugnvgx] .dashboard-card .card-header {
    background: rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .card .card-header h5,
[b-hetbugnvgx] .card .card-header h6,
[b-hetbugnvgx] .dashboard-card .card-header h5,
[b-hetbugnvgx] .dashboard-card .card-header h6 {
    color: #ffffff !important;
}

/* Limit header icon color to direct icons only, not icons inside buttons */
[b-hetbugnvgx] .card .card-header > i,
[b-hetbugnvgx] .dashboard-card .card-header > i {
    color: #6366f1 !important;
}

/* Ensure button icons keep their intended color (e.g., white in success buttons) */
[b-hetbugnvgx] .card .card-header .btn i,
[b-hetbugnvgx] .dashboard-card .card-header .btn i {
    color: inherit !important;
}

/* Override any remaining white/light backgrounds from site.css */
[b-hetbugnvgx] .welcome-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .feature-item {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .threshold-slider-container {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[b-hetbugnvgx] .status-card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Ensure all text is visible */
[b-hetbugnvgx] .card-header h3 {
    color: #ffffff !important;
}

[b-hetbugnvgx] .card-header p {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* File upload areas */
[b-hetbugnvgx] .file-upload-label {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

[b-hetbugnvgx] .file-upload-label:hover {
    border-color: rgba(99, 102, 241, 0.5) !important;
}

[b-hetbugnvgx] .upload-icon {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Tab buttons */
[b-hetbugnvgx] .tab-button {
    color: rgba(255, 255, 255, 0.6) !important;
    border-bottom-color: transparent !important;
}

[b-hetbugnvgx] .tab-button.active {
    color: #6366f1 !important;
    border-bottom-color: #6366f1 !important;
}

[b-hetbugnvgx] .tab-button:hover {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Image input tabs */
[b-hetbugnvgx] .image-input-tabs {
    border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}


/* Responsive Design */
@media (max-width: 991px) {
    .page-header[b-hetbugnvgx] {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .header-icon[b-hetbugnvgx] {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .page-title[b-hetbugnvgx] {
        font-size: 2rem;
    }

    .page-subtitle[b-hetbugnvgx] {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    /* Remove dashboard-page padding-top on mobile */
    .dashboard-page[b-hetbugnvgx] {
        padding-top: 0;
    }

    /* Optimized container padding for mobile - maximize screen space */
    .dashboard-page .container-xxl[b-hetbugnvgx] {
        padding-top: 0.5rem;
        padding-bottom: 1.5rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .breadcrumb-nav[b-hetbugnvgx] {
        margin-bottom: 0.5rem;
    }

    .page-header[b-hetbugnvgx] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .header-icon[b-hetbugnvgx] {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .page-title[b-hetbugnvgx] {
        font-size: 1.625rem;
        line-height: 1.2;
    }

    .page-subtitle[b-hetbugnvgx] {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .alert-card[b-hetbugnvgx] {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }

    .alert-icon[b-hetbugnvgx] {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }

    .alert-content h4[b-hetbugnvgx] {
        font-size: 1rem;
    }

    .alert-content p[b-hetbugnvgx] {
        font-size: 0.875rem;
    }

    [b-hetbugnvgx] .settings-card {
        border-radius: 12px;
    }

    [b-hetbugnvgx] .card-header h6,
    [b-hetbugnvgx] .card-header h5 {
        font-size: 0.875rem;
    }

    [b-hetbugnvgx] .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    [b-hetbugnvgx] .tab-content .card {
        margin-bottom: 0.75rem;
    }

    [b-hetbugnvgx] .tab-content .card:last-child {
        margin-bottom: 0;
    }

    [b-hetbugnvgx] .form-control,
    [b-hetbugnvgx] .form-select {
        font-size: 0.9375rem;
    }

    [b-hetbugnvgx] .btn {
        font-size: 0.875rem;
    }

    [b-hetbugnvgx] .message {
        font-size: 0.875rem;
    }

    /* Multi-select search - hide icon on mobile, make it simple */
    [b-hetbugnvgx] .multi-select-search .input-group-text {
        display: none;
    }

    [b-hetbugnvgx] .multi-select-search .form-control {
        padding: 0.625rem 0.75rem;
        font-size: 0.9375rem;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
    }

    [b-hetbugnvgx] .multi-select-search .input-group {
        border-radius: 8px;
    }

    [b-hetbugnvgx] .multi-select-container .form-label {
        font-size: 0.875rem;
    }

    /* Remove excessive padding from whitelist/blacklist settings */
    [b-hetbugnvgx] .whitelist-settings,
    [b-hetbugnvgx] .blacklist-settings {
        padding: 0 !important;
    }

    /* Remove bottom margin from col-12 mb-4 on mobile */
    [b-hetbugnvgx] .whitelist-settings .col-12.mb-4,
    [b-hetbugnvgx] .blacklist-settings .col-12.mb-4 {
        margin-bottom: 0.75rem !important;
    }

    [b-hetbugnvgx] .whitelist-settings .col-12.mb-4:last-child,
    [b-hetbugnvgx] .blacklist-settings .col-12.mb-4:last-child {
        margin-bottom: 0 !important;
    }

    /* Remove row margins */
    [b-hetbugnvgx] .whitelist-settings .row,
    [b-hetbugnvgx] .blacklist-settings .row {
        margin-left: 0;
        margin-right: 0;
    }

    [b-hetbugnvgx] .whitelist-settings .row > [class*="col-"],
    [b-hetbugnvgx] .blacklist-settings .row > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
    }
}

/* _content/SfwBot.Web/Components/StatCard.razor.rz.scp.css */
/*
 * StatCard Component Styles
 * Main styles are defined in shared-card-styles.css (.stat-card)
 * Icon styles are defined in shared-utilities.css (.icon-container-*)
 * This file only contains component-specific overrides if needed
 */

/* No additional styles needed - all handled by shared stylesheets */
/* _content/SfwBot.Web/Components/TopNavBar.razor.rz.scp.css */
/* Top Navigation Bar - Translucent */
.top-navbar[b-3htjcuw56r] {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    left: 0;
    right: 0;
    width: 100%;
    height: 56px;
    background: rgba(15, 23, 41, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    z-index: 1030;
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);
}

.navbar-container[b-3htjcuw56r] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
    max-width: 100%;
}

/* Brand/Logo - Simplified */
.navbar-brand[b-3htjcuw56r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-brand:hover[b-3htjcuw56r] {
    color: #ffffff;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.brand-logo[b-3htjcuw56r] {
    height: 32px;
    width: auto;
    transition: opacity 0.2s ease;
}

.navbar-brand:hover .brand-logo[b-3htjcuw56r] {
    opacity: 0.9;
}

.brand-text[b-3htjcuw56r] {
    font-weight: 700;
}

/* Center Navigation (Desktop) - Better Contrast */
.navbar-nav-center[b-3htjcuw56r] {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.navbar-nav-center a[b-3htjcuw56r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600; /* Always 600 to prevent layout shift */
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navbar-nav-center a i[b-3htjcuw56r] {
    font-size: 0.85rem;
    opacity: 0.9;
}

.navbar-nav-center a:hover[b-3htjcuw56r] {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav-center a.active[b-3htjcuw56r] {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Dashboard Link - Special Styling */
.navbar-nav-center a.nav-link-dashboard[b-3htjcuw56r] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

.navbar-nav-center a.nav-link-dashboard i[b-3htjcuw56r] {
    color: #a5b4fc;
    opacity: 1;
}

.navbar-nav-center a.nav-link-dashboard:hover[b-3htjcuw56r] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
    border-color: rgba(99, 102, 241, 0.5);
    color: #c7d2fe;
}

.navbar-nav-center a.nav-link-dashboard.active[b-3htjcuw56r] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

/* Right Navigation */
.navbar-nav-right[b-3htjcuw56r] {
    display: flex;
    align-items: center;
    margin-left: auto;
}

/* Login Button */
.login-btn[b-3htjcuw56r] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #ffffff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.login-btn:hover[b-3htjcuw56r] {
    background: linear-gradient(135deg, #7c3aed, #6366f1);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

.login-btn:focus[b-3htjcuw56r] {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

/* Mobile Navigation Toggle - Minimal */
.mobile-nav-toggle[b-3htjcuw56r] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 0.75rem;
    transition: all 0.2s ease;
}

.mobile-nav-toggle:hover[b-3htjcuw56r] {
    background-color: rgba(255, 255, 255, 0.08);
}

.mobile-nav-toggle:focus[b-3htjcuw56r] {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger-line[b-3htjcuw56r] {
    display: block;
    width: 20px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* Desktop Styles */
@media (min-width: 992px) {
    .mobile-nav-toggle[b-3htjcuw56r] {
        display: none;
    }

    .navbar-nav-center[b-3htjcuw56r] {
        display: flex;
    }

    .navbar-container[b-3htjcuw56r] {
        padding: 0 1.5rem;
    }
}

/* Mobile Styles */
@media (max-width: 992px) {
    .brand-text[b-3htjcuw56r] {
        font-size: 1.25rem;
    }

    .login-btn span[b-3htjcuw56r] {
        display: none;
    }

    .login-btn[b-3htjcuw56r] {
        padding: 0.5rem;
        width: 44px;
        height: 44px;
        justify-content: center;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .navbar-container[b-3htjcuw56r] {
        padding: 0 0.75rem;
    }

    .brand-text[b-3htjcuw56r] {
        font-size: 1.1rem;
    }
}

/* Simple Mobile Menu - Clean */
.mobile-menu-overlay[b-3htjcuw56r] {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0)); /* below navbar */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1029;
}

.mobile-menu-panel[b-3htjcuw56r] {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0)); /* below navbar */
    left: env(safe-area-inset-left, 0);
    right: env(safe-area-inset-right, 0);
    background: rgba(15, 23, 41, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    z-index: 1031;
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
    padding-left: calc(0.5rem + env(safe-area-inset-left, 0));
    padding-right: calc(0.5rem + env(safe-area-inset-right, 0));
    gap: 0.25rem;
}

.mobile-menu-item[b-3htjcuw56r] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-weight: 600; /* Always 600 to prevent layout shift */
    font-size: 0.95rem;
}

.mobile-menu-item:hover[b-3htjcuw56r] {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.mobile-menu-item.active[b-3htjcuw56r] {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.mobile-menu-item i[b-3htjcuw56r] {
    width: 1.2rem;
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Dashboard Link - Mobile Special Styling */
.mobile-menu-item.mobile-menu-dashboard[b-3htjcuw56r] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
}

.mobile-menu-item.mobile-menu-dashboard i[b-3htjcuw56r] {
    color: #a5b4fc;
    opacity: 1;
}

.mobile-menu-item.mobile-menu-dashboard:hover[b-3htjcuw56r] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
    border-color: rgba(99, 102, 241, 0.5);
    color: #c7d2fe;
}

.mobile-menu-item.mobile-menu-dashboard.active[b-3htjcuw56r] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(99, 102, 241, 0.6);
    color: #ffffff;
}

/* Only display mobile menu on small screens */
@media (min-width: 992px) {
    .mobile-menu-overlay[b-3htjcuw56r], .mobile-menu-panel[b-3htjcuw56r] { display: none; }
}

/* _content/SfwBot.Web/Pages/AdminAuditLogs.razor.rz.scp.css */
/* Admin Audit Logs - Modern Dashboard Design */

.admin-audit-logs-container[b-o1k93z9oto] {
    min-height: 100vh;
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
    padding: 2rem 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header[b-o1k93z9oto] {
    margin-bottom: 2rem;
}

.page-title[b-o1k93z9oto] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-subtitle[b-o1k93z9oto] {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 0;
    line-height: 1.6;
}

.admin-badge[b-o1k93z9oto] {
    display: flex;
    align-items: center;
}

/* Cards */
[b-o1k93z9oto] .card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[b-o1k93z9oto] .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

[b-o1k93z9oto] .card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

[b-o1k93z9oto] .card-header h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
    letter-spacing: -0.01em;
}

/* Tabs - Modern Design */
[b-o1k93z9oto] .nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

[b-o1k93z9oto] .nav-tabs .nav-link {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

[b-o1k93z9oto] .nav-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

[b-o1k93z9oto] .nav-tabs .nav-link.active {
    color: #ffffff;
    border-bottom-color: #0d6efd;
}

[b-o1k93z9oto] .nav-tabs .nav-link i {
    margin-right: 0.5rem;
}

[b-o1k93z9oto] .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

[b-o1k93z9oto] .form-control,
[b-o1k93z9oto] .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    color: #ffffff;
}

[b-o1k93z9oto] .form-control:focus,
[b-o1k93z9oto] .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    color: #ffffff;
}

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

[b-o1k93z9oto] .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

[b-o1k93z9oto] .form-select option {
    background: #1f2937;
    color: #ffffff;
    padding: 0.5rem;
}

[b-o1k93z9oto] .btn-outline-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

[b-o1k93z9oto] .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Tables - Consistent with Credits Page */
[b-o1k93z9oto] .table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.04);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.07);
    --bs-table-border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    background-color: transparent;
}

[b-o1k93z9oto] .table thead th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem;
}

[b-o1k93z9oto] .table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.9);
}

[b-o1k93z9oto] .table tbody tr:hover td {
    color: rgba(255, 255, 255, 0.95);
}

/* Badges - Modern Design */
[b-o1k93z9oto] .badge {
    padding: 0.5rem 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

[b-o1k93z9oto] .pagination {
    margin-bottom: 0;
}

[b-o1k93z9oto] .page-link {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
    border-radius: 6px;
}

[b-o1k93z9oto] .page-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    color: #ffffff;
}

[b-o1k93z9oto] .page-item.active .page-link {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: #6366f1;
    color: #ffffff;
}

[b-o1k93z9oto] .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.3);
}

.detection-card[b-o1k93z9oto] {
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.detection-card:hover[b-o1k93z9oto] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.detection-image-preview[b-o1k93z9oto] {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detection-image-preview img[b-o1k93z9oto] {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detection-image-placeholder[b-o1k93z9oto] {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.detection-details[b-o1k93z9oto] {
    font-size: 0.875rem;
}

[b-o1k93z9oto] .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

[b-o1k93z9oto] .spinner-border {
    color: #6366f1;
}

@media (max-width: 767px) {
    /* Optimized admin audit logs for mobile */
    .page-title[b-o1k93z9oto] {
        font-size: 1.625rem;
        line-height: 1.2;
    }

    .page-subtitle[b-o1k93z9oto] {
        font-size: 0.8125rem;
    }

    [b-o1k93z9oto] .card-header {
        padding: 0.875rem 1rem;
    }

    [b-o1k93z9oto] .card-body {
        padding: 0.875rem;
    }

    [b-o1k93z9oto] .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    [b-o1k93z9oto] .table {
        font-size: 0.8125rem;
    }

    [b-o1k93z9oto] .table thead th,
    [b-o1k93z9oto] .table tbody td {
        padding: 0.625rem 0.375rem;
    }

    .detection-image-preview[b-o1k93z9oto],
    .detection-image-placeholder[b-o1k93z9oto] {
        height: 120px;
    }
}

/* _content/SfwBot.Web/Pages/AdminEconomy.razor.rz.scp.css */
/* Admin Economy Page Styles - Following STYLE_GUIDE.md */

/* Page Header */
.page-header[b-1o51lrkr28] {
    margin-bottom: 2rem;
}

.page-title[b-1o51lrkr28] {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-subtitle[b-1o51lrkr28] {
    font-size: 1rem;
    color: #374151;
    margin: 0;
}

.admin-badge .badge[b-1o51lrkr28] {
    padding: 0.5rem 1rem;
    font-weight: 600;
}

/* Navigation Tabs */
[b-1o51lrkr28] .nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

[b-1o51lrkr28] .nav-tabs .nav-link {
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

[b-1o51lrkr28] .nav-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(99, 102, 241, 0.5);
    background: rgba(255, 255, 255, 0.02);
}

[b-1o51lrkr28] .nav-tabs .nav-link.active {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.1);
    border-bottom-color: #6366f1;
}

[b-1o51lrkr28] .nav-tabs .nav-link i {
    opacity: 0.8;
}

[b-1o51lrkr28] .nav-tabs .nav-link.active i {
    opacity: 1;
}

/* Stat Cards */
.stat-card[b-1o51lrkr28] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.stat-card:hover[b-1o51lrkr28] {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-icon[b-1o51lrkr28] {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
}

.stat-icon.bg-primary[b-1o51lrkr28] {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.stat-icon.bg-success[b-1o51lrkr28] {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.stat-icon.bg-info[b-1o51lrkr28] {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.stat-icon.bg-warning[b-1o51lrkr28] {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* Cards */
[b-1o51lrkr28] .card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

[b-1o51lrkr28] .card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.25rem;
}

[b-1o51lrkr28] .card-header h5 {
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

[b-1o51lrkr28] .card-header .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    border: none !important;
    color: #ffffff !important;
}

[b-1o51lrkr28] .card-header .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1fa589) !important;
}

[b-1o51lrkr28] .card-header .btn-success i {
    color: #ffffff !important;
}

[b-1o51lrkr28] .card-body {
    padding: 1.25rem;
}

/* Tables */
[b-1o51lrkr28] .table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.04);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.07);
    --bs-table-border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    background-color: transparent;
}

[b-1o51lrkr28] .table thead th {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
}

[b-1o51lrkr28] .table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

[b-1o51lrkr28] .table tbody tr:hover {
    background: rgba(99, 102, 241, 0.08);
}

[b-1o51lrkr28] .table tbody tr:hover td {
    color: rgba(255, 255, 255, 0.95);
}

[b-1o51lrkr28] .table tbody td {
    padding: 0.875rem 0.75rem;
    vertical-align: middle;
}

[b-1o51lrkr28] .table .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Badges */
[b-1o51lrkr28] .badge {
    padding: 0.375rem 0.75rem;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 0.375rem;
}

[b-1o51lrkr28] .badge.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

[b-1o51lrkr28] .badge.bg-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
}

[b-1o51lrkr28] .badge.bg-info {
    background: linear-gradient(135deg, #3b82f6, #06b6d4) !important;
}

[b-1o51lrkr28] .badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b, #f97316) !important;
    color: #ffffff !important;
}

[b-1o51lrkr28] .badge.bg-secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Buttons */
[b-1o51lrkr28] .btn {
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

[b-1o51lrkr28] .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    border: none !important;
    color: #ffffff !important;
}

[b-1o51lrkr28] .btn-success:hover {
    background: linear-gradient(135deg, #218838, #1fa589) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

[b-1o51lrkr28] .btn-success i {
    color: #ffffff !important;
}

[b-1o51lrkr28] .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    color: #ffffff;
}

[b-1o51lrkr28] .btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

[b-1o51lrkr28] .btn-outline-primary {
    border-color: rgba(99, 102, 241, 0.5);
    color: #6366f1;
}

[b-1o51lrkr28] .btn-outline-primary:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: #6366f1;
    color: #8b5cf6;
}

[b-1o51lrkr28] .btn-outline-warning {
    border-color: rgba(245, 158, 11, 0.5);
    color: #f59e0b;
}

[b-1o51lrkr28] .btn-outline-warning:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #f97316;
}

[b-1o51lrkr28] .btn-outline-success {
    border-color: rgba(40, 167, 69, 0.5);
    color: #28a745;
}

[b-1o51lrkr28] .btn-outline-success:hover {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #20c997;
}

/* Modals */
[b-1o51lrkr28] .modal-content {
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1729 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

[b-1o51lrkr28] .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.5rem;
}

[b-1o51lrkr28] .modal-title {
    color: #ffffff;
    font-weight: 600;
}

[b-1o51lrkr28] .modal-body {
    padding: 1.5rem;
}

[b-1o51lrkr28] .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

[b-1o51lrkr28] .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.7;
}

[b-1o51lrkr28] .btn-close:hover {
    opacity: 1;
}

/* Form Controls */
[b-1o51lrkr28] .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

[b-1o51lrkr28] .form-control,
[b-1o51lrkr28] .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 0.375rem;
    padding: 0.625rem 0.875rem;
}

[b-1o51lrkr28] .form-control:focus,
[b-1o51lrkr28] .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.15);
}

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

[b-1o51lrkr28] .form-text {
    color: #495057;
    font-size: 0.875rem;
}

[b-1o51lrkr28] .input-group-text {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

[b-1o51lrkr28] .form-check-input {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

[b-1o51lrkr28] .form-check-input:checked {
    background-color: #6366f1;
    border-color: #6366f1;
}

[b-1o51lrkr28] .form-check-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Empty States */
.text-center.text-muted[b-1o51lrkr28] {
    color: #495057 !important;
}

.text-center.text-muted i[b-1o51lrkr28] {
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title[b-1o51lrkr28] {
        font-size: 1.5rem;
    }

    [b-1o51lrkr28] .nav-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }

    [b-1o51lrkr28] .card-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    [b-1o51lrkr28] .btn-group {
        flex-direction: column;
        width: 100%;
    }

    [b-1o51lrkr28] .btn-group .btn {
        border-radius: 0.375rem !important;
        margin-bottom: 0.25rem;
    }
}

/* _content/SfwBot.Web/Pages/AdminReview.razor.rz.scp.css */
/* Admin Review Page - Modern Dashboard Design */

.admin-review-container[b-ahj7ten6q4] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
    min-height: 100vh;
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
}

/* Page Header */
[b-ahj7ten6q4] .page-header {
    margin-bottom: 2rem;
}

[b-ahj7ten6q4] .page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

[b-ahj7ten6q4] .page-subtitle {
    font-size: 1.125rem;
    margin-bottom: 0;
    color: #374151;
    line-height: 1.6;
}

[b-ahj7ten6q4] .admin-badge {
    display: flex;
    align-items: center;
}

[b-ahj7ten6q4] .admin-badge .badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Stat Cards - Modern Design */
[b-ahj7ten6q4] .stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

[b-ahj7ten6q4] .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

[b-ahj7ten6q4] .stat-card .card-body {
    padding: 1.5rem;
}

[b-ahj7ten6q4] .stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

[b-ahj7ten6q4] .stat-card .card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

[b-ahj7ten6q4] .stat-card .card-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Main Cards */
[b-ahj7ten6q4] .card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

[b-ahj7ten6q4] .card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.15);
}

[b-ahj7ten6q4] .card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

[b-ahj7ten6q4] .card-header .card-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
}

[b-ahj7ten6q4] .card-body {
    padding: 1.5rem;
}

/* Table Styles - Consistent with Credits & Audit Logs */
[b-ahj7ten6q4] .table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.04);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.07);
    --bs-table-border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    background-color: transparent;
}

[b-ahj7ten6q4] .table thead th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem;
}

[b-ahj7ten6q4] .table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.9);
}

[b-ahj7ten6q4] .table tbody tr:hover td {
    color: rgba(255, 255, 255, 0.95);
}

/* Badges - Modern Design */
[b-ahj7ten6q4] .badge {
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}

/* Buttons */
[b-ahj7ten6q4] .btn-group .btn {
    margin-right: 0.5rem;
}

[b-ahj7ten6q4] .btn-group .btn:last-child {
    margin-right: 0;
}

[b-ahj7ten6q4] .btn-success {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
}

[b-ahj7ten6q4] .btn-success:hover {
    background-color: #059669;
    border-color: #059669;
}

[b-ahj7ten6q4] .btn-danger {
    background-color: #ef4444;
    border-color: #ef4444;
    color: white;
}

[b-ahj7ten6q4] .btn-danger:hover {
    background-color: #dc2626;
    border-color: #dc2626;
}

[b-ahj7ten6q4] .btn-outline-info {
    color: #3b82f6;
    border-color: #3b82f6;
}

[b-ahj7ten6q4] .btn-outline-info:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

[b-ahj7ten6q4] .btn-outline-primary {
    color: #8b5cf6;
    border-color: #8b5cf6;
}

[b-ahj7ten6q4] .btn-outline-primary:hover {
    background-color: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

/* Empty State */
[b-ahj7ten6q4] .text-center.py-5 {
    padding: 3rem 1rem;
}

[b-ahj7ten6q4] .text-center.py-5 i {
    color: #4b5563;
}

[b-ahj7ten6q4] .text-center.py-5 h5,
[b-ahj7ten6q4] .text-center.py-5 p {
    color: #9ca3af;
}

/* Modal */
[b-ahj7ten6q4] .modal-content {
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

[b-ahj7ten6q4] .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

[b-ahj7ten6q4] .modal-title {
    color: #ffffff;
    font-weight: 600;
}

[b-ahj7ten6q4] .modal-body {
    padding: 2rem;
}

[b-ahj7ten6q4] .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

[b-ahj7ten6q4] .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

[b-ahj7ten6q4] .btn-close:hover {
    opacity: 1;
}

/* Responsive Design - Mobile Optimized */
@media (max-width: 767px) {
    .admin-review-container[b-ahj7ten6q4] {
        padding: 1rem;
    }

    [b-ahj7ten6q4] .page-title {
        font-size: 1.625rem;
        line-height: 1.2;
    }

    [b-ahj7ten6q4] .page-subtitle {
        font-size: 0.8125rem;
    }

    [b-ahj7ten6q4] .card-header {
        padding: 0.875rem 1rem;
    }

    [b-ahj7ten6q4] .card-body {
        padding: 0.875rem;
    }

    [b-ahj7ten6q4] .stat-card .card-body {
        padding: 0.875rem;
    }

    [b-ahj7ten6q4] .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    [b-ahj7ten6q4] .stat-card .card-title {
        font-size: 1.5rem;
    }

    [b-ahj7ten6q4] .table {
        font-size: 0.8125rem;
    }

    [b-ahj7ten6q4] .table thead th,
    [b-ahj7ten6q4] .table tbody td {
        padding: 0.625rem 0.375rem;
    }

    [b-ahj7ten6q4] .btn-group {
        display: flex;
        flex-direction: column;
        gap: 0.375rem;
    }

    [b-ahj7ten6q4] .btn-group .btn {
        margin-right: 0;
        width: 100%;
        padding: 0.625rem;
        font-size: 0.875rem;
    }

    [b-ahj7ten6q4] .btn-group-vertical {
        width: 100%;
    }

    [b-ahj7ten6q4] .btn-group-vertical .btn {
        width: 100%;
        padding: 0.625rem;
        font-size: 0.875rem;
    }
}

/* _content/SfwBot.Web/Pages/Features.razor.rz.scp.css */
/* Features Page - Distinct Design */

/* Base Styles */
.features-page[b-h2ffw9bukf] {
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Section Styles */
.section-header[b-h2ffw9bukf] {
    margin-bottom: 4rem;
}

.section-title[b-h2ffw9bukf] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle[b-h2ffw9bukf] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Core Features Section */
.core-features-section[b-h2ffw9bukf] {
    padding: 6rem 0;
    background: transparent;
}

.features-grid[b-h2ffw9bukf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card[b-h2ffw9bukf] {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.feature-icon[b-h2ffw9bukf] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.feature-title[b-h2ffw9bukf] {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description[b-h2ffw9bukf] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.feature-list[b-h2ffw9bukf] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li[b-h2ffw9bukf] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.feature-list li i[b-h2ffw9bukf] {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Management Section */
.management-section[b-h2ffw9bukf] {
    padding: 6rem 0;
    background: rgba(26, 31, 58, 0.4);
}

.management-grid[b-h2ffw9bukf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.management-card[b-h2ffw9bukf] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
}

.management-icon[b-h2ffw9bukf] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.management-title[b-h2ffw9bukf] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.management-description[b-h2ffw9bukf] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.management-tags[b-h2ffw9bukf] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag[b-h2ffw9bukf] {
    padding: 0.375rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Performance Section */
.performance-section[b-h2ffw9bukf] {
    padding: 6rem 0;
    background: transparent;
}

.performance-grid[b-h2ffw9bukf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.performance-card[b-h2ffw9bukf] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    text-align: center;
}

.performance-icon[b-h2ffw9bukf] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.performance-title[b-h2ffw9bukf] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.performance-description[b-h2ffw9bukf] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* CTA Section */
.cta-section[b-h2ffw9bukf] {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background[b-h2ffw9bukf] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-gradient[b-h2ffw9bukf] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.cta-content[b-h2ffw9bukf] {
    position: relative;
    z-index: 2;
}

.cta-title[b-h2ffw9bukf] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle[b-h2ffw9bukf] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions[b-h2ffw9bukf] {
    margin-bottom: 2rem;
}

.btn-cta-primary[b-h2ffw9bukf] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover[b-h2ffw9bukf] {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    color: white;
}

.cta-features[b-h2ffw9bukf] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature[b-h2ffw9bukf] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-feature i[b-h2ffw9bukf] {
    color: #10b981;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-hero[b-h2ffw9bukf] {
        padding: 4rem 0 3rem;
    }

    .page-title[b-h2ffw9bukf] {
        font-size: 2.5rem;
    }

    .features-grid[b-h2ffw9bukf] {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .management-grid[b-h2ffw9bukf] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .performance-grid[b-h2ffw9bukf] {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 767px) {
    .page-hero[b-h2ffw9bukf] {
        padding: 3rem 0 2rem;
    }

    .page-title[b-h2ffw9bukf] {
        font-size: 2rem;
    }

    .page-description[b-h2ffw9bukf] {
        font-size: 1rem;
    }

    .section-title[b-h2ffw9bukf] {
        font-size: 1.75rem;
    }

    .section-subtitle[b-h2ffw9bukf] {
        font-size: 1rem;
    }

    .features-grid[b-h2ffw9bukf] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card[b-h2ffw9bukf] {
        padding: 2rem;
    }

    .feature-icon[b-h2ffw9bukf] {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .feature-title[b-h2ffw9bukf] {
        font-size: 1.25rem;
    }

    .management-grid[b-h2ffw9bukf] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .management-card[b-h2ffw9bukf] {
        padding: 1.5rem;
    }

    .management-icon[b-h2ffw9bukf] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .performance-grid[b-h2ffw9bukf] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .performance-card[b-h2ffw9bukf] {
        padding: 1.5rem;
    }

    .performance-icon[b-h2ffw9bukf] {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .cta-features[b-h2ffw9bukf] {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta-primary[b-h2ffw9bukf] {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* _content/SfwBot.Web/Pages/HowItWorks.razor.rz.scp.css */
/* How It Works Page - Distinct Design */

/* Base Styles */
.how-it-works-page[b-8zcbkhhypc] {
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Section Styles */
.section-header[b-8zcbkhhypc] {
    margin-bottom: 4rem;
}

.section-title[b-8zcbkhhypc] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle[b-8zcbkhhypc] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Process Section */
.process-section[b-8zcbkhhypc] {
    padding: 6rem 0;
    background: rgba(26, 31, 58, 0.3);
}

.process-flow[b-8zcbkhhypc] {
    max-width: 800px;
    margin: 0 auto;
}

.process-card[b-8zcbkhhypc] {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
}

.process-number[b-8zcbkhhypc] {
    font-size: 0.875rem;
    font-weight: 700;
    color: rgba(99, 102, 241, 0.8);
    margin-bottom: 1.5rem;
}

.process-icon[b-8zcbkhhypc] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.process-title[b-8zcbkhhypc] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-description[b-8zcbkhhypc] {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.process-arrow[b-8zcbkhhypc] {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 1.5rem;
    color: rgba(99, 102, 241, 0.5);
}

/* Capabilities Section */
.capabilities-section[b-8zcbkhhypc] {
    padding: 6rem 0;
    background: transparent;
}

.capabilities-grid[b-8zcbkhhypc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.capability-card[b-8zcbkhhypc] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.capability-icon[b-8zcbkhhypc] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.capability-title[b-8zcbkhhypc] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.capability-description[b-8zcbkhhypc] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.capability-tags[b-8zcbkhhypc] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag[b-8zcbkhhypc] {
    padding: 0.375rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Privacy Section */
.privacy-section[b-8zcbkhhypc] {
    padding: 6rem 0;
    background: rgba(26, 31, 58, 0.3);
}

.privacy-grid[b-8zcbkhhypc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.privacy-card[b-8zcbkhhypc] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
}

.privacy-icon[b-8zcbkhhypc] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.privacy-title[b-8zcbkhhypc] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-description[b-8zcbkhhypc] {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* CTA Section */
.cta-section[b-8zcbkhhypc] {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-background[b-8zcbkhhypc] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cta-gradient[b-8zcbkhhypc] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
}

.cta-content[b-8zcbkhhypc] {
    position: relative;
    z-index: 2;
}

.cta-title[b-8zcbkhhypc] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle[b-8zcbkhhypc] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions[b-8zcbkhhypc] {
    margin-bottom: 2rem;
}

.btn-cta-primary[b-8zcbkhhypc] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.btn-cta-primary:hover[b-8zcbkhhypc] {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    color: white;
}

.cta-features[b-8zcbkhhypc] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature[b-8zcbkhhypc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-feature i[b-8zcbkhhypc] {
    color: #10b981;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-hero[b-8zcbkhhypc] {
        padding: 4rem 0 3rem;
    }

    .page-title[b-8zcbkhhypc] {
        font-size: 2.5rem;
    }

    .capabilities-grid[b-8zcbkhhypc] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .privacy-grid[b-8zcbkhhypc] {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .page-hero[b-8zcbkhhypc] {
        padding: 3rem 0 2rem;
    }

    .page-title[b-8zcbkhhypc] {
        font-size: 2rem;
    }

    .page-description[b-8zcbkhhypc] {
        font-size: 1rem;
    }

    .section-title[b-8zcbkhhypc] {
        font-size: 1.75rem;
    }

    .section-subtitle[b-8zcbkhhypc] {
        font-size: 1rem;
    }

    .process-card[b-8zcbkhhypc] {
        padding: 1.5rem;
    }

    .process-icon[b-8zcbkhhypc] {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .process-title[b-8zcbkhhypc] {
        font-size: 1.25rem;
    }

    .capabilities-grid[b-8zcbkhhypc] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .capability-card[b-8zcbkhhypc] {
        padding: 1.5rem;
    }

    .capability-icon[b-8zcbkhhypc] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .privacy-grid[b-8zcbkhhypc] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .privacy-card[b-8zcbkhhypc] {
        padding: 1.5rem;
    }

    .privacy-icon[b-8zcbkhhypc] {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .cta-features[b-8zcbkhhypc] {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-cta-primary[b-8zcbkhhypc] {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* _content/SfwBot.Web/Pages/Pricing.razor.rz.scp.css */
/* Pricing Page Styles - Matches Features and HowItWorks pages */

/* Base Styles */
.pricing-page[b-yoavoyxuus] {
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Section Styles */
.section-header[b-yoavoyxuus] {
    margin-bottom: 4rem;
}

.section-title[b-yoavoyxuus] {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle[b-yoavoyxuus],
.section-description[b-yoavoyxuus] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing-section[b-yoavoyxuus] {
    padding: 6rem 0;
    background: transparent;
}



/* Pricing Cards */
.pricing-card[b-yoavoyxuus] {
    padding: 0;
    background: rgba(15, 23, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

/* Free Plan - Special Styling */
.pricing-card.free-plan[b-yoavoyxuus] {
    border: 2px solid rgba(99, 102, 241, 0.6);
    background: rgba(99, 102, 241, 0.08);
}

.pricing-card.free-plan[b-yoavoyxuus]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    opacity: 0.8;
}

/* Accent Bar for Paid Plans */
.pricing-card-header[b-yoavoyxuus] {
    padding: 1.5rem 1.25rem 0.75rem;
    text-align: center;
    position: relative;
    background: transparent;
}

/* Color Accent Bar - Gets color from inline style */
.pricing-card-header[style*="border-top"][b-yoavoyxuus]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: inherit;
    border-top: inherit;
    box-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
    opacity: 0.4;
}

.pricing-card-title[b-yoavoyxuus] {
    font-size: 1.625rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Default bright color for titles without custom color */
.pricing-card-title:not([style*="color"])[b-yoavoyxuus] {
    color: rgba(255, 255, 255, 0.95);
}

/* Enhanced Glow for Colored Titles */
.pricing-card-title[style*="color"][b-yoavoyxuus] {
    filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 16px currentColor);
}

.pricing-badge[b-yoavoyxuus] {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-card-body[b-yoavoyxuus] {
    padding: 1rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Price Section - Most Prominent */
.pricing-price-section[b-yoavoyxuus] {
    text-align: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-price[b-yoavoyxuus] {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.75rem;
    gap: 0.25rem;
}

.pricing-price-currency[b-yoavoyxuus] {
    font-size: 1.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.pricing-price-amount[b-yoavoyxuus] {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period[b-yoavoyxuus] {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* Credits Section - Prominent Display */
.pricing-credits-section[b-yoavoyxuus] {
    text-align: center;
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pricing-credits-number[b-yoavoyxuus] {
    font-size: 2.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.375rem;
    white-space: nowrap;
    overflow: visible;
    line-height: 1;
}

.pricing-credits-label[b-yoavoyxuus] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pricing-description[b-yoavoyxuus] {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Features List */
.pricing-features[b-yoavoyxuus] {
    margin-bottom: 1.5rem;
    flex: 1;
    list-style: none;
    padding: 0;
}

.pricing-feature-item[b-yoavoyxuus] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.pricing-feature-item i[b-yoavoyxuus] {
    flex-shrink: 0;
    margin-right: 0.625rem;
    font-size: 0.9375rem;
}

/* Top-Up Card Specific */
.topup-card[b-yoavoyxuus] {
    border-color: rgba(139, 92, 246, 0.3);
}

.topup-card .pricing-card-header[b-yoavoyxuus]::before {
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.topup-card .pricing-credits-section[b-yoavoyxuus] {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
    border-color: rgba(139, 92, 246, 0.25);
}

.topup-card .pricing-credits-number[b-yoavoyxuus] {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Voting Section */
.voting-info[b-yoavoyxuus] {
    padding: 2rem 0;
}

.feature-list[b-yoavoyxuus] {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li[b-yoavoyxuus] {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.voting-visual[b-yoavoyxuus] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.voting-card[b-yoavoyxuus] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: 400px;
}

.voting-icon[b-yoavoyxuus] {
    font-size: 4rem;
    color: #6366f1;
    margin-bottom: 1.5rem;
}

.voting-card h3[b-yoavoyxuus] {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.voting-card p[b-yoavoyxuus] {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-list[b-yoavoyxuus] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item[b-yoavoyxuus] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover[b-yoavoyxuus] {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question[b-yoavoyxuus] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.faq-question i[b-yoavoyxuus] {
    color: #6366f1;
    font-size: 0.9rem;
}

.faq-answer[b-yoavoyxuus] {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Button Styles - Enhanced Design */
.btn-pricing-primary[b-yoavoyxuus] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
    letter-spacing: 0.025em;
}

.btn-pricing-primary:hover[b-yoavoyxuus] {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.45);
    color: white;
    text-decoration: none;
}

.btn-pricing-primary:active[b-yoavoyxuus] {
    transform: translateY(-1px);
}

.btn-pricing-outline[b-yoavoyxuus] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 10px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    letter-spacing: 0.025em;
}

.btn-pricing-outline:hover[b-yoavoyxuus] {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.7);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.25);
    color: white;
    text-decoration: none;
}

.btn-pricing-outline:active[b-yoavoyxuus] {
    transform: translateY(-1px);
}

/* Responsive - Mobile First */
@media (max-width: 991.98px) {
    .section-title[b-yoavoyxuus] {
        font-size: 2rem;
    }

    .pricing-card[b-yoavoyxuus] {
        border-radius: 16px;
    }

    .pricing-card-header[b-yoavoyxuus] {
        padding: 1.5rem 1.25rem 0.75rem;
    }

    .pricing-card-title[b-yoavoyxuus] {
        font-size: 1.625rem;
    }

    .pricing-card-body[b-yoavoyxuus] {
        padding: 1.25rem 1.5rem 1.75rem;
    }

    .pricing-price-amount[b-yoavoyxuus] {
        font-size: 3.25rem;
    }

    .pricing-credits-number[b-yoavoyxuus] {
        font-size: 2.25rem;
    }
}

/* Mobile Optimizations */
@media (max-width: 767.98px) {
    .pricing-section[b-yoavoyxuus] {
        padding: 3rem 0;
    }

    .section-title[b-yoavoyxuus] {
        font-size: 1.75rem;
    }

    .section-description[b-yoavoyxuus] {
        font-size: 1rem;
    }

    /* Compact Card Design for Mobile */
    .pricing-card[b-yoavoyxuus] {
        border-radius: 16px;
        margin-bottom: 1.5rem;
    }

    .pricing-card-header[b-yoavoyxuus] {
        padding: 1.25rem 1rem 0.5rem;
    }

    .pricing-card-header[b-yoavoyxuus]::before {
        height: 4px;
    }

    .pricing-card-title[b-yoavoyxuus] {
        font-size: 1.5rem;
        letter-spacing: -0.01em;
    }

    .pricing-card-body[b-yoavoyxuus] {
        padding: 1rem 1.25rem 1.5rem;
    }

    /* Adjust Price Display */
    .pricing-price-section[b-yoavoyxuus] {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .pricing-price-amount[b-yoavoyxuus] {
        font-size: 2.75rem;
    }

    .pricing-price-currency[b-yoavoyxuus] {
        font-size: 1.375rem;
        margin-top: 0.375rem;
    }

    .pricing-period[b-yoavoyxuus] {
        font-size: 0.9375rem;
    }

    /* Credits Section Mobile */
    .pricing-credits-section[b-yoavoyxuus] {
        padding: 1rem 1.25rem;
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }

    .pricing-credits-number[b-yoavoyxuus] {
        font-size: 2rem;
    }

    .pricing-credits-label[b-yoavoyxuus] {
        font-size: 0.75rem;
        letter-spacing: 0.75px;
    }

    /* Features Mobile */
    .pricing-description[b-yoavoyxuus] {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .pricing-features[b-yoavoyxuus] {
        margin-bottom: 1.5rem;
    }

    .pricing-feature-item[b-yoavoyxuus] {
        padding: 0.5rem 0;
        font-size: 0.9375rem;
    }

    .pricing-feature-item i[b-yoavoyxuus] {
        font-size: 0.875rem;
        margin-right: 0.625rem;
    }

    /* Button Mobile Adjustments */
    .btn-pricing-primary[b-yoavoyxuus],
    .btn-pricing-outline[b-yoavoyxuus] {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    /* Top-up Cards Mobile */
    .topup-card .pricing-credits-section[b-yoavoyxuus] {
        padding: 1rem 1.25rem;
    }
}

/* Extra Small Devices */
@media (max-width: 575.98px) {
    .pricing-card-header[b-yoavoyxuus] {
        padding: 1rem 0.875rem 0.5rem;
    }

    .pricing-card-title[b-yoavoyxuus] {
        font-size: 1.375rem;
    }

    .pricing-card-body[b-yoavoyxuus] {
        padding: 0.875rem 1rem 1.25rem;
    }

    .pricing-price-amount[b-yoavoyxuus] {
        font-size: 2.5rem;
    }

    .pricing-price-currency[b-yoavoyxuus] {
        font-size: 1.25rem;
    }

    .pricing-credits-number[b-yoavoyxuus] {
        font-size: 1.75rem;
    }

    .btn-pricing-primary[b-yoavoyxuus],
    .btn-pricing-outline[b-yoavoyxuus] {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
        gap: 0.5rem;
    }
}

/* _content/SfwBot.Web/Pages/Privacy.razor.rz.scp.css */
/* Privacy Page - Modern Design */

/* Base Styles */
.privacy-page[b-9e8z05z0dx] {
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Hero Header */
.page-hero[b-9e8z05z0dx] {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background[b-9e8z05z0dx] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb[b-9e8z05z0dx] {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.orb-1[b-9e8z05z0dx] {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -40%;
    left: -20%;
}

.orb-2[b-9e8z05z0dx] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: -20%;
    right: -15%;
}

.hero-content[b-9e8z05z0dx] {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav[b-9e8z05z0dx] {
    margin-bottom: 2rem;
}

.breadcrumb[b-9e8z05z0dx] {
    background: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 0.875rem;
}

.breadcrumb-item a[b-9e8z05z0dx] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover[b-9e8z05z0dx] {
    color: #6366f1;
}

.breadcrumb-item.active[b-9e8z05z0dx] {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item[b-9e8z05z0dx]::before {
    content: "›";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
}

.page-title[b-9e8z05z0dx] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-description[b-9e8z05z0dx] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.content-section[b-9e8z05z0dx] {
    padding: 4rem 0 6rem;
    background: transparent;
}

.content-intro[b-9e8z05z0dx] {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lead[b-9e8z05z0dx] {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.legal-content[b-9e8z05z0dx] {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.legal-content h2[b-9e8z05z0dx] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.legal-content h2:first-child[b-9e8z05z0dx] {
    margin-top: 0;
}

.legal-content h3[b-9e8z05z0dx] {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.legal-content p[b-9e8z05z0dx] {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.legal-content ul[b-9e8z05z0dx] {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li[b-9e8z05z0dx] {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.legal-content strong[b-9e8z05z0dx] {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.legal-content a[b-9e8z05z0dx] {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover[b-9e8z05z0dx] {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-hero[b-9e8z05z0dx] {
        padding: 4rem 0 3rem;
    }

    .page-title[b-9e8z05z0dx] {
        font-size: 2.5rem;
    }

    .legal-content[b-9e8z05z0dx] {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-hero[b-9e8z05z0dx] {
        padding: 3rem 0 2rem;
    }

    .page-title[b-9e8z05z0dx] {
        font-size: 2rem;
    }

    .page-description[b-9e8z05z0dx] {
        font-size: 1rem;
    }

    .content-section[b-9e8z05z0dx] {
        padding: 3rem 0 4rem;
    }

    .lead[b-9e8z05z0dx] {
        font-size: 1.125rem;
    }

    .legal-content[b-9e8z05z0dx] {
        padding: 2rem 1.5rem;
    }

    .legal-content h2[b-9e8z05z0dx] {
        font-size: 1.5rem;
    }

    .legal-content h3[b-9e8z05z0dx] {
        font-size: 1.25rem;
    }
}

/* _content/SfwBot.Web/Pages/Security.razor.rz.scp.css */
/* Security Page - Modern Design */

/* Base Styles */
.security-page[b-8u211u54ns] {
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Hero Header */
.page-hero[b-8u211u54ns] {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background[b-8u211u54ns] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb[b-8u211u54ns] {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.orb-1[b-8u211u54ns] {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -40%;
    left: -20%;
}

.orb-2[b-8u211u54ns] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: -20%;
    right: -15%;
}

.hero-content[b-8u211u54ns] {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav[b-8u211u54ns] {
    margin-bottom: 2rem;
}

.breadcrumb[b-8u211u54ns] {
    background: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 0.875rem;
}

.breadcrumb-item a[b-8u211u54ns] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover[b-8u211u54ns] {
    color: #6366f1;
}

.breadcrumb-item.active[b-8u211u54ns] {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item[b-8u211u54ns]::before {
    content: "›";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
}

.page-title[b-8u211u54ns] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-description[b-8u211u54ns] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.content-section[b-8u211u54ns] {
    padding: 4rem 0 6rem;
    background: transparent;
}

.content-intro[b-8u211u54ns] {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lead[b-8u211u54ns] {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.legal-content[b-8u211u54ns] {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.legal-content h2[b-8u211u54ns] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.legal-content h2:first-child[b-8u211u54ns] {
    margin-top: 0;
}

.legal-content h3[b-8u211u54ns] {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.legal-content p[b-8u211u54ns] {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.legal-content ul[b-8u211u54ns] {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li[b-8u211u54ns] {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.legal-content strong[b-8u211u54ns] {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.legal-content a[b-8u211u54ns] {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover[b-8u211u54ns] {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-hero[b-8u211u54ns] {
        padding: 4rem 0 3rem;
    }

    .page-title[b-8u211u54ns] {
        font-size: 2.5rem;
    }

    .legal-content[b-8u211u54ns] {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-hero[b-8u211u54ns] {
        padding: 3rem 0 2rem;
    }

    .page-title[b-8u211u54ns] {
        font-size: 2rem;
    }

    .page-description[b-8u211u54ns] {
        font-size: 1rem;
    }

    .content-section[b-8u211u54ns] {
        padding: 3rem 0 4rem;
    }

    .lead[b-8u211u54ns] {
        font-size: 1.125rem;
    }

    .legal-content[b-8u211u54ns] {
        padding: 2rem 1.5rem;
    }

    .legal-content h2[b-8u211u54ns] {
        font-size: 1.5rem;
    }

    .legal-content h3[b-8u211u54ns] {
        font-size: 1.25rem;
    }
}

/* _content/SfwBot.Web/Pages/Server/Credits.razor.rz.scp.css */
/* Credits Page - Modern Dashboard Design */

/* Success Button - Green "Buy More Credits" */
[b-g5zoh4h2py] .btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

[b-g5zoh4h2py] .btn-success i {
    color: #ffffff !important;
}

[b-g5zoh4h2py] .btn-success:hover:not(:disabled) {
    background: linear-gradient(135deg, #218838, #1fa589);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

[b-g5zoh4h2py] .btn-success:active:not(:disabled) {
    transform: translateY(0);
}

/* Loading State */
.loading-container[b-g5zoh4h2py] {
    text-align: center;
    padding: 4rem 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Grid - Shared from GeneralSettings */
.stats-grid[b-g5zoh4h2py] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card[b-g5zoh4h2py] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover[b-g5zoh4h2py] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon[b-g5zoh4h2py] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

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

.stat-number[b-g5zoh4h2py] {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-label[b-g5zoh4h2py] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.stat-meta[b-g5zoh4h2py] {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Credit Balance Progress Card */
.balance-display[b-g5zoh4h2py] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.balance-info[b-g5zoh4h2py] {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.balance-amount[b-g5zoh4h2py] {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.balance-separator[b-g5zoh4h2py] {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
}

.balance-total[b-g5zoh4h2py] {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.balance-percentage[b-g5zoh4h2py] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
}

.balance-footer[b-g5zoh4h2py] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.balance-footer-item[b-g5zoh4h2py] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
}

.balance-footer-item i[b-g5zoh4h2py] {
    color: rgba(255, 255, 255, 0.6);
}

/* Scheduled Downgrade Banner - Consolidated Info */
.scheduled-downgrade-banner[b-g5zoh4h2py] {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(139, 92, 246, 0.12));
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.scheduled-downgrade-banner:hover[b-g5zoh4h2py] {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-color: rgba(99, 102, 241, 0.35);
}

/* Transaction History Table - Matches Activity Logs styling */
[b-g5zoh4h2py] .table {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

[b-g5zoh4h2py] .table thead th {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    padding: 1rem;
}

[b-g5zoh4h2py] .table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.9);
}

[b-g5zoh4h2py] .table tbody tr:hover td {
    color: rgba(255, 255, 255, 0.95);
}

/* Empty State */
.empty-state[b-g5zoh4h2py] {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i[b-g5zoh4h2py] {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.empty-state p[b-g5zoh4h2py] {
    margin: 0;
    font-size: 0.9375rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .stat-icon[b-g5zoh4h2py] {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .stat-number[b-g5zoh4h2py] {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .stats-grid[b-g5zoh4h2py] {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat-card[b-g5zoh4h2py] {
        padding: 1.5rem;
        gap: 1rem;
    }

    .stat-icon[b-g5zoh4h2py] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .stat-number[b-g5zoh4h2py] {
        font-size: 1.5rem;
    }

    .stat-label[b-g5zoh4h2py] {
        font-size: 0.875rem;
    }

    .stat-meta[b-g5zoh4h2py] {
        font-size: 0.75rem;
    }

    .balance-amount[b-g5zoh4h2py] {
        font-size: 2rem;
    }

    .balance-separator[b-g5zoh4h2py],
    .balance-total[b-g5zoh4h2py] {
        font-size: 1.25rem;
    }

    .balance-percentage[b-g5zoh4h2py] {
        font-size: 1rem;
    }

    .balance-footer[b-g5zoh4h2py] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .scheduled-downgrade-banner[b-g5zoh4h2py] {
        padding: 1rem;
    }

    .scheduled-downgrade-banner .d-flex[b-g5zoh4h2py] {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem !important;
    }

    .scheduled-downgrade-banner button[b-g5zoh4h2py] {
        width: 100%;
    }

    /* Match Activity Logs mobile table styling */
    [b-g5zoh4h2py] .table {
        font-size: 0.8125rem;
    }

    [b-g5zoh4h2py] .table thead th,
    [b-g5zoh4h2py] .table tbody td {
        padding: 0.625rem 0.375rem;
    }
}

.white-plus[b-g5zoh4h2py] {
    color: white !important;
}

/* ============================================
   BUY CREDITS MODAL - PRICING CARDS
   ============================================ */

/* Wider Modal for 4-Column Layout */
[b-g5zoh4h2py] .modal-xl {
    max-width: 1400px;
}

/* Enhanced Modal Tab Styling */
[b-g5zoh4h2py] .modal-body .nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 2rem;
}

[b-g5zoh4h2py] .modal-body .nav-tabs .nav-link {
    font-size: 1.0625rem;
    padding: 0.875rem 1.75rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

[b-g5zoh4h2py] .modal-body .nav-tabs .nav-link i {
    margin-right: 0.5rem;
}

/* Modal Pricing Cards Grid - use Bootstrap gutters, NOT flex gap (prevents wrapping issues) */
[b-g5zoh4h2py] .modal-body .row.g-3 {
    /* Increase vertical spacing while keeping Bootstrap grid math correct */
    --bs-gutter-y: 1.5rem;
    --bs-gutter-x: 1rem;
}

/* Modal-specific Pricing Card Enhancements */
[b-g5zoh4h2py] .modal-body .pricing-card {
    background: rgba(15, 23, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Enhanced Header Colors with Glow */
[b-g5zoh4h2py] .modal-body .pricing-card-header[style*="border-top"]::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: inherit;
    border-top: inherit;
    box-shadow: 0 0 16px currentColor, 0 0 32px currentColor;
    opacity: 0.5;
}

/* Default bright color for modal titles without custom color */
[b-g5zoh4h2py] .modal-body .pricing-card-title:not([style*="color"]) {
    color: rgba(255, 255, 255, 0.95);
}

/* Colored Title Glow Effect */
[b-g5zoh4h2py] .modal-body .pricing-card-title[style*="color"] {
    filter: drop-shadow(0 0 6px currentColor) drop-shadow(0 0 12px currentColor);
}

/* Enhanced Credits Display in Modal */
[b-g5zoh4h2py] .modal-body .pricing-credits-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Buttons in Modal */
[b-g5zoh4h2py] .modal-body .pricing-card .btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[b-g5zoh4h2py] .modal-body .pricing-card .btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

[b-g5zoh4h2py] .modal-body .pricing-card .btn-primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

[b-g5zoh4h2py] .modal-body .pricing-card .btn-outline-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border-radius: 10px;
    font-weight: 700;
}

[b-g5zoh4h2py] .modal-body .pricing-card .btn-outline-success {
    border-color: rgba(40, 167, 69, 0.5);
    color: rgba(40, 167, 69, 1);
    background: rgba(40, 167, 69, 0.1);
    border-radius: 10px;
    font-weight: 700;
}

/* Loading State in Modal */
[b-g5zoh4h2py] .modal-body .pricing-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty State / No Plans Available */
[b-g5zoh4h2py] .modal-body .alert-info {
    background: rgba(13, 202, 240, 0.12);
    border: 1px solid rgba(13, 202, 240, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

/* Mobile Optimizations for Modal Cards */
@media (max-width: 767px) {
    [b-g5zoh4h2py] .modal-body .nav-tabs .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }

    [b-g5zoh4h2py] .modal-body .row.g-3 {
        row-gap: 1.25rem;
    }

    [b-g5zoh4h2py] .modal-body .pricing-card {
        border-radius: 12px;
    }

    [b-g5zoh4h2py] .modal-body .pricing-card-header[style*="border-top"]::after {
        height: 3px;
    }

    [b-g5zoh4h2py] .modal-body .pricing-card-title {
        font-size: 1.125rem;
    }

    [b-g5zoh4h2py] .modal-body .pricing-credits-number {
        font-size: 1.75rem;
    }

    [b-g5zoh4h2py] .modal-body .pricing-card .btn-primary,
    [b-g5zoh4h2py] .modal-body .pricing-card .btn-outline-secondary,
    [b-g5zoh4h2py] .modal-body .pricing-card .btn-outline-success {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Top-Up Package Card Styling (Purple Accent) */
[b-g5zoh4h2py] .modal-body .tab-pane:last-child .pricing-card {
    border-color: rgba(139, 92, 246, 0.3);
}

[b-g5zoh4h2py] .modal-body .tab-pane:last-child .pricing-card-header::after {
    background: linear-gradient(90deg, #8b5cf6, #a855f7) !important;
    border: none !important;
}

[b-g5zoh4h2py] .modal-body .tab-pane:last-child .pricing-credits-number {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Extra Small Devices */
@media (max-width: 575px) {
    [b-g5zoh4h2py] .modal-body .nav-tabs .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    [b-g5zoh4h2py] .modal-body .pricing-card-title {
        font-size: 1rem;
    }

    [b-g5zoh4h2py] .modal-body .pricing-credits-number {
        font-size: 1.5rem;
    }
}

/* _content/SfwBot.Web/Pages/Server/GeneralSettings.razor.rz.scp.css */
.stats-grid[b-k8fzlgiq2k] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card[b-k8fzlgiq2k] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.stat-icon[b-k8fzlgiq2k] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 14px;
    font-size: 1.75rem;
    color: white;
    flex-shrink: 0;
}

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

.stat-number[b-k8fzlgiq2k] {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.stat-label[b-k8fzlgiq2k] {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Section Header */
.section-header[b-k8fzlgiq2k] {
    margin-bottom: 1.5rem;
}

.section-title[b-k8fzlgiq2k] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.section-title i[b-k8fzlgiq2k] {
    color: #6366f1;
    font-size: 1.25rem;
}

/* Modules Grid */
.modules-grid[b-k8fzlgiq2k] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.module-card[b-k8fzlgiq2k] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.module-card:hover[b-k8fzlgiq2k] {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.module-card .module-icon[b-k8fzlgiq2k] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.module-card .module-content[b-k8fzlgiq2k] {
    flex: 1;
}

.module-title[b-k8fzlgiq2k] {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.module-description[b-k8fzlgiq2k] {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.module-arrow[b-k8fzlgiq2k] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.module-card:hover .module-arrow[b-k8fzlgiq2k] {
    color: #6366f1;
    transform: translateX(4px);
}

/* Loading & Error States */
.spinner-border[b-k8fzlgiq2k] {
    width: 3rem;
    height: 3rem;
    border-color: #6366f1;
    border-right-color: transparent;
}

@media (max-width: 991px) {
    .modules-grid[b-k8fzlgiq2k] {
        grid-template-columns: 1fr;
    }

    .section-title[b-k8fzlgiq2k] {
        font-size: 1.375rem;
    }
}

@media (max-width: 767px) {
    .stats-grid[b-k8fzlgiq2k] {
        grid-template-columns: 1fr;
    }

    .section-title[b-k8fzlgiq2k] {
        font-size: 1.125rem;
    }

    .stat-number[b-k8fzlgiq2k] {
        font-size: 1.5rem;
    }

    .module-title[b-k8fzlgiq2k] {
        font-size: 1rem;
    }
}

/* _content/SfwBot.Web/Pages/Server/Logs.razor.rz.scp.css */
/* Logs Page - Modern Dashboard Design */

/* Layout */
.logs-layout[b-n8yqb392ws] {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

/* Main Logs Section */
.logs-main[b-n8yqb392ws] {
    min-width: 0;
}

.logs-card[b-n8yqb392ws] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.logs-header[b-n8yqb392ws] {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logs-header-content[b-n8yqb392ws] {
    /* Clean header */
}

.logs-title[b-n8yqb392ws] {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.logs-title i[b-n8yqb392ws] {
    color: #6366f1;
    font-size: 0.95rem;
}

.logs-subtitle[b-n8yqb392ws] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.logs-content[b-n8yqb392ws] {
    /* Content area */
}

/* Log List */
.log-list[b-n8yqb392ws] {
    /* Clean list */
}

.log-item[b-n8yqb392ws] {
    display: flex;
    gap: 0.85rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s ease;
}

.log-item:last-child[b-n8yqb392ws] {
    border-bottom: none;
}

.log-item:hover[b-n8yqb392ws] {
    background: rgba(255, 255, 255, 0.03);
}

.log-icon[b-n8yqb392ws] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 6px;
    font-size: 0.9rem;
    color: #a5b4fc !important;
    flex-shrink: 0;
}

/* Override colored icon classes */
.log-icon i[b-n8yqb392ws] {
    color: #a5b4fc !important;
}

.log-icon i.text-primary[b-n8yqb392ws],
.log-icon i.text-success[b-n8yqb392ws],
.log-icon i.text-danger[b-n8yqb392ws],
.log-icon i.text-warning[b-n8yqb392ws],
.log-icon i.text-info[b-n8yqb392ws] {
    color: #a5b4fc !important;
}

.log-details[b-n8yqb392ws] {
    flex: 1;
    min-width: 0;
}

.log-action[b-n8yqb392ws] {
    margin-bottom: 0.25rem;
}

.action-type[b-n8yqb392ws] {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-right: 0.5rem;
}

.action-details[b-n8yqb392ws] {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.log-meta[b-n8yqb392ws] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.log-user[b-n8yqb392ws] {
    font-weight: 500;
}

.log-channel[b-n8yqb392ws] {
    /* Channel info */
}

.log-time[b-n8yqb392ws] {
    margin-left: auto;
}

/* Empty/Error States */
.logs-empty[b-n8yqb392ws],
.logs-error[b-n8yqb392ws] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.logs-empty i[b-n8yqb392ws],
.logs-error i[b-n8yqb392ws] {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.logs-empty p[b-n8yqb392ws],
.logs-error p[b-n8yqb392ws] {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.logs-error i[b-n8yqb392ws] {
    color: #ef4444;
}

/* Load More */
/* Note: .load-more-section and .btn-load-more styles have been moved to shared-card-styles.css
   to allow reuse across multiple components (Logs.razor and Credits.razor) */

/* Sidebar */
.logs-sidebar[b-n8yqb392ws] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Filter Card */
.filter-card[b-n8yqb392ws] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.filter-header[b-n8yqb392ws] {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-title[b-n8yqb392ws] {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.filter-title i[b-n8yqb392ws] {
    color: #6366f1;
    font-size: 0.95rem;
}

.filter-content[b-n8yqb392ws] {
    padding: 1.25rem;
}

.filter-group[b-n8yqb392ws] {
    margin-bottom: 0.5rem;
}

.filter-group:last-of-type[b-n8yqb392ws] {
    margin-bottom: 0.5rem;
}

.filter-label[b-n8yqb392ws] {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.filter-select[b-n8yqb392ws],
.filter-input[b-n8yqb392ws] {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #ffffff;
    transition: all 0.3s ease;
    appearance: none;
}

/* Custom dropdown arrow */
.filter-select[b-n8yqb392ws] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.filter-select:focus[b-n8yqb392ws],
.filter-input:focus[b-n8yqb392ws] {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.filter-select:focus[b-n8yqb392ws] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.filter-select option[b-n8yqb392ws] {
    background: #1a1f3a;
    color: #ffffff;
}

.btn-apply-filters[b-n8yqb392ws] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-apply-filters:hover:not(:disabled)[b-n8yqb392ws] {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.btn-apply-filters:disabled[b-n8yqb392ws] {
    opacity: 0.6;
    cursor: not-allowed;
}

.filter-error[b-n8yqb392ws] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #f87171;
}

.filter-error i[b-n8yqb392ws] {
    flex-shrink: 0;
}

/* Stats Card */
.stats-card[b-n8yqb392ws] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.stats-header[b-n8yqb392ws] {
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-title[b-n8yqb392ws] {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.stats-title i[b-n8yqb392ws] {
    color: #6366f1;
    font-size: 0.95rem;
}

.stats-content[b-n8yqb392ws] {
    padding: 1.25rem;
}

.stat-item[b-n8yqb392ws] {
    text-align: center;
    padding: 1rem 0;
}

.stat-item:not(:last-child)[b-n8yqb392ws] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value[b-n8yqb392ws] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.stat-label[b-n8yqb392ws] {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}


/* Responsive Design */
@media (max-width: 991px) {
    .logs-layout[b-n8yqb392ws] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .logs-sidebar[b-n8yqb392ws] {
        order: -1;
    }

    .logs-header[b-n8yqb392ws] {
        padding: 1.5rem;
    }

    .logs-title[b-n8yqb392ws] {
        font-size: 1.375rem;
    }

    .log-item[b-n8yqb392ws] {
        padding: 1.25rem 1.5rem;
    }

    .log-icon[b-n8yqb392ws] {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .filter-card[b-n8yqb392ws],
    .stats-card[b-n8yqb392ws] {
        /* Keep same styling */
    }
}

@media (max-width: 767px) {
    /* Optimized logs header */
    .logs-header[b-n8yqb392ws] {
        padding: 0.875rem 1rem;
    }

    .logs-title[b-n8yqb392ws] {
        font-size: 1.125rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.375rem;
    }

    .logs-subtitle[b-n8yqb392ws] {
        font-size: 0.8125rem;
    }

    /* Optimized log items */
    .log-item[b-n8yqb392ws] {
        flex-direction: column;
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .log-icon[b-n8yqb392ws] {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }

    .action-type[b-n8yqb392ws] {
        font-size: 0.875rem;
    }

    .action-details[b-n8yqb392ws] {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .log-meta[b-n8yqb392ws] {
        flex-direction: column;
        gap: 0.375rem;
        font-size: 0.8125rem;
    }

    .log-time[b-n8yqb392ws] {
        margin-left: 0;
    }

    .filter-title[b-n8yqb392ws],
    .stats-title[b-n8yqb392ws] {
        font-size: 1rem;
    }

    .stat-value[b-n8yqb392ws] {
        font-size: 1.5rem;
    }

    .logs-empty i[b-n8yqb392ws],
    .logs-error i[b-n8yqb392ws] {
        font-size: 2rem;
    }

    .logs-card[b-n8yqb392ws],
    .filter-card[b-n8yqb392ws],
    .stats-card[b-n8yqb392ws] {
        border-radius: 12px;
    }
}
/* _content/SfwBot.Web/Pages/Servers.razor.rz.scp.css */
/* Servers page - Matching SettingsPageBase styling */

/* Dashboard Page Base - Matching SettingsPageBase */
.dashboard-page[b-880s2okjkn] {
    min-height: 100vh;
    color: #ffffff;
    padding-top: 0;
    position: relative;
}

/* Background Effects - Matching SettingsPageBase */
.dashboard-background[b-880s2okjkn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb[b-880s2okjkn] {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.08;
}

.orb-1[b-880s2okjkn] {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -20%;
    right: -10%;
}

.orb-2[b-880s2okjkn] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    bottom: -20%;
    left: -10%;
}

/* Container - Matching SettingsPageBase */
.dashboard-page .container-xxl[b-880s2okjkn] {
    position: relative;
    z-index: 1;
    padding-top: calc(1rem + 2.8125rem); /* 1rem base + breadcrumb height (0.875rem * 1.5 line-height + 1.5rem margin-bottom) */
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Page Header - Matching SettingsPageBase */
.page-header[b-880s2okjkn] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.header-icon[b-880s2okjkn] {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 16px;
    font-size: 1.75rem;
    flex-shrink: 0;
    color: #ffffff;
}

.header-icon i[b-880s2okjkn] {
    font-size: 1.75rem;
    color: #ffffff;
}

.header-content[b-880s2okjkn] {
    flex: 1;
}

.page-title[b-880s2okjkn] {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.page-subtitle[b-880s2okjkn] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Refresh Button - Positioned in header */
.btn-refresh[b-880s2okjkn] {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-refresh:hover:not(:disabled)[b-880s2okjkn] {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.btn-refresh:disabled[b-880s2okjkn] {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-refresh i[b-880s2okjkn] {
    font-size: 1.1rem;
}

/* Cache Info Wrapper */
.cache-info-wrapper[b-880s2okjkn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

/* Cache Info */
.cache-info[b-880s2okjkn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.cache-info i[b-880s2okjkn] {
    font-size: 0.8rem;
}

/* Mobile refresh button - hidden on desktop */
.btn-refresh-mobile[b-880s2okjkn] {
    display: none;
}

/* Desktop refresh button - shown on desktop */
.btn-refresh-desktop[b-880s2okjkn] {
    display: flex;
}

/* Page Content - Matching SettingsPageBase */
.page-content[b-880s2okjkn] {
    position: relative;
}

/* Toolbar - Clean Design */
.server-toolbar[b-880s2okjkn] {
    margin-bottom: 2rem;
}

.toolbar-row[b-880s2okjkn] {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
}

/* Search Input - Matching form controls from SettingsPageBase */
.search-wrapper[b-880s2okjkn] {
    position: relative;
    flex: 1;
}

.search-icon[b-880s2okjkn] {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    pointer-events: none;
}

.search-input[b-880s2okjkn] {
    width: 100%;
    height: 48px;
    padding: 0 1rem 0 2.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.search-input[b-880s2okjkn]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-input:focus[b-880s2okjkn] {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Filter and Sort Selects - Matching form controls from SettingsPageBase */
.filter-select[b-880s2okjkn],
.sort-select[b-880s2okjkn] {
    height: 48px;
    padding: 0 2.5rem 0 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.filter-select[b-880s2okjkn] {
    min-width: 180px;
}

.sort-select[b-880s2okjkn] {
    min-width: 160px;
}

.filter-select:hover[b-880s2okjkn],
.sort-select:hover[b-880s2okjkn] {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-select:focus[b-880s2okjkn],
.sort-select:focus[b-880s2okjkn] {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.filter-select option[b-880s2okjkn],
.sort-select option[b-880s2okjkn] {
    background: #1a1f3a;
    color: #ffffff;
}

/* Server List Section */
.server-list-section[b-880s2okjkn] {
    margin-top: 0;
}

/* Ensure server cards stretch evenly within the grid */
.server-list[b-880s2okjkn] {
    align-items: stretch;
}

.server-card[b-880s2okjkn] {
    height: 100%;
}

/* Alert Cards - Matching SettingsPageBase */
.alert-card[b-880s2okjkn] {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.alert-card.alert-warning[b-880s2okjkn] {
    border-left: 4px solid #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.alert-card.alert-danger[b-880s2okjkn] {
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.alert-icon[b-880s2okjkn] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-warning .alert-icon[b-880s2okjkn] {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.alert-danger .alert-icon[b-880s2okjkn] {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
}

.alert-icon i[b-880s2okjkn] {
    font-size: 1.5rem;
}

.alert-content[b-880s2okjkn] {
    flex: 1;
}

.alert-content h4[b-880s2okjkn] {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.alert-content p[b-880s2okjkn] {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.btn-alert[b-880s2okjkn] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-alert:hover[b-880s2okjkn] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .toolbar-row[b-880s2okjkn] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .filter-select[b-880s2okjkn],
    .sort-select[b-880s2okjkn] {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 767px) {
    /* Mobile optimizations - Matching SettingsPageBase */
    .page-header[b-880s2okjkn] {
        gap: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .header-icon[b-880s2okjkn] {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .header-icon i[b-880s2okjkn] {
        font-size: 1.375rem;
    }

    .page-title[b-880s2okjkn] {
        font-size: 1.625rem;
    }

    .page-subtitle[b-880s2okjkn] {
        font-size: 0.875rem;
    }

    /* Hide desktop refresh button on mobile */
    .btn-refresh-desktop[b-880s2okjkn] {
        display: none;
    }

    /* Show mobile refresh button */
    .btn-refresh-mobile[b-880s2okjkn] {
        display: flex;
    }

    .btn-refresh[b-880s2okjkn] {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .btn-refresh i[b-880s2okjkn] {
        font-size: 0.95rem;
    }

    /* Cache info wrapper on mobile */
    .cache-info-wrapper[b-880s2okjkn] {
        margin-bottom: 1rem;
    }

    .cache-info[b-880s2okjkn] {
        font-size: 0.75rem;
    }

    .search-wrapper .search-icon[b-880s2okjkn] {
        left: 0.75rem;
        font-size: 0.875rem;
    }

    .search-input[b-880s2okjkn] {
        height: 42px;
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem 0.625rem 2.25rem;
    }

    .filter-select[b-880s2okjkn],
    .sort-select[b-880s2okjkn] {
        height: 42px;
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
    }

    .alert-card[b-880s2okjkn] {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .alert-icon[b-880s2okjkn] {
        width: 40px;
        height: 40px;
    }

    .alert-icon i[b-880s2okjkn] {
        font-size: 1.25rem;
    }

    .alert-content h4[b-880s2okjkn] {
        font-size: 1rem;
    }

    .alert-content p[b-880s2okjkn] {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .page-title[b-880s2okjkn] {
        font-size: 1.5rem;
    }

    .header-icon i[b-880s2okjkn] {
        font-size: 1.25rem;
    }
}
/* _content/SfwBot.Web/Pages/Terms.razor.rz.scp.css */
/* Terms Page - Modern Design */

/* Base Styles */
.terms-page[b-5emoaopooh] {
    background: linear-gradient(180deg, #0f1729 0%, #1a1f3a 100%);
    color: #ffffff;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Hero Header */
.page-hero[b-5emoaopooh] {
    position: relative;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-background[b-5emoaopooh] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orb[b-5emoaopooh] {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.orb-1[b-5emoaopooh] {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -40%;
    left: -20%;
}

.orb-2[b-5emoaopooh] {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: -20%;
    right: -15%;
}

.hero-content[b-5emoaopooh] {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav[b-5emoaopooh] {
    margin-bottom: 2rem;
}

.breadcrumb[b-5emoaopooh] {
    background: none;
    padding: 0;
    margin: 0;
    justify-content: center;
    font-size: 0.875rem;
}

.breadcrumb-item a[b-5emoaopooh] {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover[b-5emoaopooh] {
    color: #6366f1;
}

.breadcrumb-item.active[b-5emoaopooh] {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item + .breadcrumb-item[b-5emoaopooh]::before {
    content: "›";
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.75rem;
}

.page-title[b-5emoaopooh] {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-description[b-5emoaopooh] {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
}

/* Content Section */
.content-section[b-5emoaopooh] {
    padding: 4rem 0 6rem;
    background: transparent;
}

.content-intro[b-5emoaopooh] {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.lead[b-5emoaopooh] {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.legal-content[b-5emoaopooh] {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.legal-content h2[b-5emoaopooh] {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.legal-content h2:first-child[b-5emoaopooh] {
    margin-top: 0;
}

.legal-content h3[b-5emoaopooh] {
    font-size: 1.375rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.legal-content p[b-5emoaopooh] {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.25rem;
}

.legal-content ul[b-5emoaopooh] {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li[b-5emoaopooh] {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.legal-content strong[b-5emoaopooh] {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.legal-content a[b-5emoaopooh] {
    color: #6366f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover[b-5emoaopooh] {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-hero[b-5emoaopooh] {
        padding: 4rem 0 3rem;
    }

    .page-title[b-5emoaopooh] {
        font-size: 2.5rem;
    }

    .legal-content[b-5emoaopooh] {
        padding: 2.5rem;
    }
}

@media (max-width: 767px) {
    .page-hero[b-5emoaopooh] {
        padding: 3rem 0 2rem;
    }

    .page-title[b-5emoaopooh] {
        font-size: 2rem;
    }

    .page-description[b-5emoaopooh] {
        font-size: 1rem;
    }

    .content-section[b-5emoaopooh] {
        padding: 3rem 0 4rem;
    }

    .lead[b-5emoaopooh] {
        font-size: 1.125rem;
    }

    .legal-content[b-5emoaopooh] {
        padding: 2rem 1.5rem;
    }

    .legal-content h2[b-5emoaopooh] {
        font-size: 1.5rem;
    }

    .legal-content h3[b-5emoaopooh] {
        font-size: 1.25rem;
    }
}

/* _content/SfwBot.Web/Shared/MainLayout.razor.rz.scp.css */
.landing-layout[b-z63xvnlzl7] {
    width: 100%;
    min-height: 100vh; /* allow content to grow */
    overflow-x: hidden;
}

.app-layout[b-z63xvnlzl7] {
    position: relative;
    min-height: 100vh;
}

.page[b-z63xvnlzl7] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px - env(safe-area-inset-top, 0)); /* Account for top navbar height and safe area */
    margin-top: calc(56px + env(safe-area-inset-top, 0)); /* Height of fixed top navbar + safe area */
}

main[b-z63xvnlzl7] {
    flex: 1;
    padding-top: 0;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Mobile optimization - reduce top padding */
@media (max-width: 767px) {
    main[b-z63xvnlzl7] {
        padding-top: 0.5rem;
    }
}

main.with-sidebar[b-z63xvnlzl7] {
    margin-left: 250px; /* Width of fixed sidebar */
}

main.full-width[b-z63xvnlzl7] {
    width: 100%;
    margin-left: 0;
}

.sidebar[b-z63xvnlzl7] {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0)); /* Height of top navbar + safe area */
    left: env(safe-area-inset-left, 0);
    width: 250px;
    height: calc(100vh - 56px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
    background: linear-gradient(180deg, rgba(15, 23, 41, 0.95) 0%, rgba(26, 31, 58, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1020;
    overflow-y: auto;
    padding: 0; /* No padding */
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.top-row[b-z63xvnlzl7] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.user-info-header[b-z63xvnlzl7] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-avatar[b-z63xvnlzl7] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
}

.header-username[b-z63xvnlzl7] {
    font-weight: 600;
    color: #212529;
}

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

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

/* Accessibility - Skip Links */
.skip-link[b-z63xvnlzl7] {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 4px 4px;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus[b-z63xvnlzl7] {
    top: 0;
    color: #fff;
    text-decoration: none;
}

/* Mobile Navigation Styles */
.mobile-overlay[b-z63xvnlzl7] {
    position: fixed;
    top: calc(56px + env(safe-area-inset-top, 0));
    left: 0;
    width: 100vw;
    height: calc(100vh - 56px - env(safe-area-inset-top, 0));
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1025;
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.show[b-z63xvnlzl7] {
    opacity: 1;
    visibility: visible;
}

/* Mobile styles */
@media (max-width: 991.98px) {
    .page[b-z63xvnlzl7] {
        margin-top: calc(56px + env(safe-area-inset-top, 0)); /* Account for top navbar + safe area */
    }

    .sidebar[b-z63xvnlzl7] {
        position: fixed;
        top: calc(56px + env(safe-area-inset-top, 0));
        left: calc(-250px - env(safe-area-inset-left, 0)); /* Hide sidebar off-screen by default */
        width: 250px;
        height: calc(100vh - 56px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1030; /* Higher z-index for mobile overlay */
        padding: 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
        will-change: transform; /* Optimize for animations */
    }

    .sidebar.show[b-z63xvnlzl7] {
        left: env(safe-area-inset-left, 0); /* Show sidebar when toggled, accounting for safe area */
    }

    main.with-sidebar[b-z63xvnlzl7] {
        margin-left: 0; /* No margin on mobile */
    }

    main.full-width[b-z63xvnlzl7] {
        margin-left: 0;
    }

    .top-row:not(.auth)[b-z63xvnlzl7] {
        display: none;
    }

    .top-row.auth[b-z63xvnlzl7] {
        justify-content: space-between;
    }

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

/* Tablet styles */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sidebar[b-z63xvnlzl7] {
        width: 280px;
        left: -280px;
    }
}

/* Enhanced touch interactions for mobile */
@media (max-width: 991.98px) and (pointer: coarse) {
    .sidebar .nav-link[b-z63xvnlzl7] {
        min-height: 48px; /* Larger touch targets */
        padding: 0.75rem 1rem;
    }

    .mobile-nav-toggle[b-z63xvnlzl7] {
        min-width: 48px;
        min-height: 48px;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    .page[b-z63xvnlzl7] {
        flex-direction: row;
    }

    .sidebar[b-z63xvnlzl7] {
        /* Fixed positioning is already set in main styles */
        position: fixed;
        top: calc(56px + env(safe-area-inset-top, 0));
        left: env(safe-area-inset-left, 0);
        width: 250px;
        height: calc(100vh - 56px - env(safe-area-inset-top, 0) - env(safe-area-inset-bottom, 0));
    }

    main.with-sidebar[b-z63xvnlzl7] {
        margin-left: 250px; /* Ensure margin for fixed sidebar */
    }

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

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


/* Shared dark theme table styles for all app pages using MainLayout */
[b-z63xvnlzl7] .table {
    --bs-table-bg: transparent;
    --bs-table-color: rgba(255, 255, 255, 0.88);
    --bs-table-striped-bg: rgba(255, 255, 255, 0.04);
    --bs-table-striped-color: rgba(255, 255, 255, 0.88);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.07);
    --bs-table-hover-color: rgba(255, 255, 255, 0.95);
    --bs-table-border-color: rgba(255, 255, 255, 0.1);
    background-color: transparent !important;
}

/* Ensure cells don't inherit white from Bootstrap defaults */
[b-z63xvnlzl7] .table > :not(caption) > * > * {
    background-color: transparent !important;
    border-color: rgba(255, 255, 255, 0.1);
}
/* _content/SfwBot.Web/Shared/NavMenu.razor.rz.scp.css */
/* Sidebar Navigation - Clean & Simple */
.navbar-toggler[b-j4yqfflxpw] {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.top-row[b-j4yqfflxpw] {
    height: 3.5rem;
    background-color: rgba(15, 23, 41, 0.8);
}

.navbar-brand[b-j4yqfflxpw] {
    font-size: 1.1rem;
    color: #ffffff;
}

.oi[b-j4yqfflxpw] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

/* Navigation Items - Simplified */
.nav-item[b-j4yqfflxpw] {
    font-size: 0.95rem;
    padding: 0;
    margin-bottom: 0.25rem;
}

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

    .nav-item:last-of-type[b-j4yqfflxpw] {
        margin-bottom: 0.5rem;
    }

    .nav-item[b-j4yqfflxpw]  a {
        color: rgba(255, 255, 255, 0.9) !important;
        border-radius: 0;
        border-left: 3px solid transparent;
        height: auto;
        min-height: 48px;
        display: flex;
        align-items: center;
        text-decoration: none;
        padding: 0.75rem 1.25rem;
        transition: background-color 0.2s ease, border-color 0.2s ease;
        font-weight: 600; /* Always 600 to prevent layout shift */
        background: transparent;
    }

    .nav-item[b-j4yqfflxpw]  a span {
        margin-right: 1rem;
        font-size: 1.1rem;
        width: 1.25rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.75);
        transition: color 0.2s ease;
    }

/* Active State - Clean border accent */
.nav-item[b-j4yqfflxpw]  a.active {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: #6366f1;
    color: #ffffff !important;
}

.nav-item[b-j4yqfflxpw]  a.active span {
    color: #6366f1;
}

/* Hover State - Subtle */
.nav-item[b-j4yqfflxpw]  a:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-left-color: rgba(99, 102, 241, 0.6);
    color: #ffffff !important;
}

.nav-item[b-j4yqfflxpw]  a:hover span {
    color: #a5b4fc;
}

/* Section Divider - Minimal */
.nav-section-divider[b-j4yqfflxpw] {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1.5rem 1.25rem;
}

/* Section Header - Better Contrast */
.nav-section-header[b-j4yqfflxpw] {
    padding: 1rem 1.25rem 0.5rem 1.25rem;
}

.nav-section-header small[b-j4yqfflxpw] {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-section-header small i[b-j4yqfflxpw] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Override Bootstrap's text-muted class in sidebar */
.nav-section-header .text-muted[b-j4yqfflxpw] {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Placeholder - Simple */
.nav-placeholder[b-j4yqfflxpw] {
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 2rem 1.25rem;
    text-align: center;
    font-style: normal;
    background: transparent;
    margin: 2rem 0;
}

.nav-placeholder i[b-j4yqfflxpw] {
    width: 100%;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.nav-placeholder small[b-j4yqfflxpw] {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* Navigation scrollable area */
.nav-scrollable[b-j4yqfflxpw] {
    height: 100%; /* Use full height of sidebar container */
    overflow-y: auto;
}

/* Ensure smooth scrolling on mobile */
@media (max-width: 768px) {
    .nav-scrollable[b-j4yqfflxpw] {
        -webkit-overflow-scrolling: touch;
    }
}
