/* =============================================
   RavRekOrbit OES - Dark + Purple Neon Theme
   ============================================= */

:root {
    --oes-bg-dark: #030712;
    --oes-bg-surface: #0f172a;
    --oes-bg-card: #1e293b;
    --oes-bg-input: #0f172a;
    --oes-primary: #7c3aed;
    --oes-primary-hover: #8b5cf6;
    --oes-primary-glow: rgba(124, 58, 237, 0.4);
    --oes-accent: #a78bfa;
    --oes-text: #f8fafc;
    --oes-text-muted: #94a3b8;
    --oes-text-dim: #64748b;
    --oes-border: rgba(255, 255, 255, 0.08);
    --oes-border-purple: rgba(124, 58, 237, 0.3);
    --oes-green: #22c55e;
    --oes-red: #ef4444;
    --oes-yellow: #eab308;
    --oes-blue: #3b82f6;
    --oes-purple: #a855f7;
    --oes-radius: 16px;
    --oes-radius-sm: 10px;
}

/* Base */
.oes-page {
    background: var(--oes-bg-dark);
    color: var(--oes-text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background-image: radial-gradient(circle at 50% -20%, rgba(124,58,237,0.12), transparent 50%);
}

.oes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.oes-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--oes-border);
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.oes-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.oes-brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--oes-primary), var(--oes-accent));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.oes-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--oes-text);
}

.oes-brand-text span {
    color: var(--oes-accent);
}

.oes-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.oes-nav-link {
    color: var(--oes-text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.oes-nav-link:hover {
    color: var(--oes-accent);
}

.oes-user-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border);
    border-radius: 30px;
    padding: 6px 16px 6px 8px;
}

.oes-user-avatar {
    width: 30px;
    height: 30px;
    background: var(--oes-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.oes-user-info {
    display: flex;
    flex-direction: column;
}

.oes-user-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--oes-text);
}

.oes-user-id {
    font-size: 11px;
    color: var(--oes-text-dim);
}

/* Cards */
.oes-card {
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius);
    padding: 24px;
    transition: all 0.3s;
}

.oes-card:hover {
    border-color: var(--oes-border-purple);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.1);
}

.oes-card-glow {
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border-purple);
    border-radius: var(--oes-radius);
    padding: 24px;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.08);
}

/* Buttons */
.oes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--oes-radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
}

.oes-btn-primary {
    background: var(--oes-primary);
    color: #fff;
}

.oes-btn-primary:hover {
    background: var(--oes-primary-hover);
    box-shadow: 0 0 20px var(--oes-primary-glow);
    color: #fff;
}

.oes-btn-outline {
    background: transparent;
    color: var(--oes-accent);
    border: 1px solid var(--oes-border-purple);
}

.oes-btn-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    color: #fff;
}

.oes-btn-danger {
    background: var(--oes-red);
    color: #fff;
}

.oes-btn-success {
    background: var(--oes-green);
    color: #fff;
}

.oes-btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 14px;
}

.oes-btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.oes-btn-block {
    width: 100%;
}

.oes-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Inputs */
.oes-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--oes-bg-input);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius-sm);
    color: var(--oes-text);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    outline: none;
}

.oes-input:focus {
    border-color: var(--oes-primary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.oes-input::placeholder {
    color: var(--oes-text-dim);
}

.oes-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--oes-text-muted);
    margin-bottom: 8px;
}

.oes-form-group {
    margin-bottom: 20px;
}

/* Stats Cards */
.oes-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.oes-stat-card {
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius);
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.oes-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--oes-border-purple);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.15);
}

.oes-stat-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.oes-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--oes-accent);
}

.oes-stat-label {
    font-size: 12px;
    color: var(--oes-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Exam Cards */
.oes-exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.oes-exam-card {
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius);
    padding: 24px;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.oes-exam-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--oes-primary), var(--oes-accent));
    opacity: 0;
    transition: opacity 0.3s;
}

.oes-exam-card:hover {
    transform: translateY(-6px);
    border-color: var(--oes-border-purple);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
}

.oes-exam-card:hover::before {
    opacity: 1;
}

.oes-exam-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--oes-text);
}

.oes-exam-desc {
    font-size: 13px;
    color: var(--oes-text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.oes-exam-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.oes-exam-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--oes-text-dim);
}

.oes-exam-meta-item i {
    color: var(--oes-accent);
}

/* Plan Cards */
.oes-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.oes-plan-card {
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border);
    border-radius: var(--oes-radius);
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.oes-plan-card.popular {
    border-color: var(--oes-primary);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.oes-plan-card.popular::after {
    content: 'POPULAR';
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--oes-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 0 0 8px 8px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.oes-plan-card:hover {
    transform: translateY(-8px);
    border-color: var(--oes-primary);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}

.oes-plan-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--oes-text-muted);
    margin-bottom: 12px;
}

.oes-plan-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--oes-text);
    line-height: 1;
}

.oes-plan-price span {
    font-size: 18px;
    color: var(--oes-text-muted);
}

.oes-plan-tests {
    font-size: 14px;
    color: var(--oes-accent);
    margin: 12px 0 20px;
    font-weight: 600;
}

/* Auth Pages */
.oes-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--oes-bg-dark);
    background-image: radial-gradient(circle at 30% 20%, rgba(124,58,237,0.15), transparent 50%),
                      radial-gradient(circle at 70% 80%, rgba(168,85,247,0.1), transparent 50%);
    padding: 40px 20px;
}

.oes-auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.oes-auth-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.oes-auth-subtitle {
    font-size: 14px;
    color: var(--oes-text-muted);
    text-align: center;
    margin-bottom: 30px;
}

/* Exam Interface */
.oes-exam-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    min-height: 100vh;
    background: var(--oes-bg-dark);
}

.oes-exam-main {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--oes-border);
}

.oes-exam-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--oes-border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.oes-exam-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--oes-bg-card);
    border: 1px solid var(--oes-border-purple);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 700;
    color: var(--oes-accent);
    font-variant-numeric: tabular-nums;
}

.oes-exam-timer.warning {
    color: var(--oes-yellow);
    border-color: rgba(234, 179, 8, 0.3);
    animation: pulse 1s infinite;
}

.oes-exam-timer.danger {
    color: var(--oes-red);
    border-color: rgba(239, 68, 68, 0.3);
    animation: pulse 0.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.oes-question-area {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
}

.oes-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.oes-question-number {
    font-size: 14px;
    color: var(--oes-accent);
    font-weight: 600;
}

.oes-question-marks {
    font-size: 12px;
    color: var(--oes-text-dim);
    background: var(--oes-bg-card);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--oes-border);
}

.oes-question-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--oes-text);
}

.oes-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.oes-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--oes-bg-surface);
    border: 2px solid var(--oes-border);
    border-radius: var(--oes-radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.oes-option:hover {
    border-color: var(--oes-border-purple);
    background: rgba(124, 58, 237, 0.06);
}

.oes-option.selected {
    border-color: var(--oes-primary);
    background: rgba(124, 58, 237, 0.12);
}

.oes-option-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--oes-text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.oes-option.selected .oes-option-radio {
    border-color: var(--oes-primary);
    background: var(--oes-primary);
}

.oes-option.selected .oes-option-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.oes-question-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--oes-border);
}

/* Side Panel */
.oes-exam-sidebar {
    display: flex;
    flex-direction: column;
    background: var(--oes-bg-surface);
    overflow-y: auto;
}

.oes-camera-preview {
    width: 100%;
    aspect-ratio: 4/3;
    background: #000;
    border-bottom: 1px solid var(--oes-border);
    position: relative;
    overflow: hidden;
}

.oes-camera-preview video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1);
}

.oes-camera-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,0.7);
    color: var(--oes-red);
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.oes-camera-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--oes-red);
    animation: pulse 1.5s infinite;
}

.oes-palette-section {
    padding: 16px;
}

.oes-palette-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--oes-text-muted);
    margin-bottom: 12px;
}

.oes-section-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.oes-section-tab {
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--oes-border);
    background: transparent;
    color: var(--oes-text-muted);
    transition: all 0.2s;
}

.oes-section-tab.active {
    background: var(--oes-primary);
    color: #fff;
    border-color: var(--oes-primary);
}

/* Question Palette */
.oes-palette-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.oes-palette-btn {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    border: none;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.oes-palette-btn.not-visited {
    background: #374151;
    color: #9ca3af;
}

.oes-palette-btn.unanswered {
    background: var(--oes-red);
    color: #fff;
}

.oes-palette-btn.answered {
    background: var(--oes-green);
    color: #fff;
}

.oes-palette-btn.marked {
    background: var(--oes-purple);
    color: #fff;
}

.oes-palette-btn.answered-marked {
    background: var(--oes-purple);
    color: #fff;
    box-shadow: inset 0 -3px 0 var(--oes-green);
}

.oes-palette-btn.current {
    outline: 2px solid var(--oes-accent);
    outline-offset: 2px;
}

/* Legend */
.oes-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: var(--oes-bg-card);
    border-radius: var(--oes-radius-sm);
    border: 1px solid var(--oes-border);
}

.oes-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--oes-text-muted);
}

.oes-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Submit Button */
.oes-submit-area {
    padding: 16px;
    border-top: 1px solid var(--oes-border);
    margin-top: auto;
}

/* Alerts */
.oes-alert {
    padding: 14px 18px;
    border-radius: var(--oes-radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oes-alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.oes-alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.oes-alert-warning {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: #fde047;
}

/* Tables */
.oes-table {
    width: 100%;
    border-collapse: collapse;
}

.oes-table th {
    background: var(--oes-primary);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

.oes-table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--oes-border);
    font-size: 13px;
    color: var(--oes-text);
}

.oes-table tr:hover td {
    background: rgba(124, 58, 237, 0.05);
}

/* Badge */
.oes-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.oes-badge-green { background: rgba(34,197,94,0.15); color: var(--oes-green); }
.oes-badge-red { background: rgba(239,68,68,0.15); color: var(--oes-red); }
.oes-badge-purple { background: rgba(168,85,247,0.15); color: var(--oes-purple); }
.oes-badge-blue { background: rgba(59,130,246,0.15); color: var(--oes-blue); }

/* Section Title */
.oes-section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--oes-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.oes-section-title i {
    color: var(--oes-accent);
}

/* Results OMR */
.oes-omr-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 6px;
    margin-bottom: 24px;
}

.oes-omr-cell {
    aspect-ratio: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.oes-omr-correct { background: var(--oes-green); color: #fff; }
.oes-omr-incorrect { background: var(--oes-red); color: #fff; }
.oes-omr-unanswered { background: #374151; color: #9ca3af; }

/* Fullscreen Overlay Warning */
.oes-fullscreen-warning {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.oes-fullscreen-warning.show {
    display: flex;
}

.oes-fullscreen-warning h2 {
    color: var(--oes-red);
    font-size: 28px;
}

.oes-fullscreen-warning p {
    color: var(--oes-text-muted);
    font-size: 16px;
    text-align: center;
    max-width: 400px;
}

/* Loading Spinner */
.oes-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: var(--oes-accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .oes-exam-container {
        grid-template-columns: 1fr;
    }

    .oes-exam-sidebar {
        position: fixed;
        right: -320px;
        top: 0;
        width: 320px;
        height: 100vh;
        z-index: 200;
        transition: right 0.3s;
    }

    .oes-exam-sidebar.open {
        right: 0;
    }

    .oes-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .oes-plans-grid {
        grid-template-columns: 1fr;
    }

    .oes-auth-card {
        padding: 24px;
    }

    .oes-question-actions {
        flex-wrap: wrap;
    }

    .oes-question-actions .oes-btn {
        flex: 1;
        min-width: 120px;
    }
}

/* Scrollbar */
.oes-page ::-webkit-scrollbar {
    width: 6px;
}

.oes-page ::-webkit-scrollbar-track {
    background: var(--oes-bg-dark);
}

.oes-page ::-webkit-scrollbar-thumb {
    background: var(--oes-primary);
    border-radius: 3px;
}

/* =============================================
   Professional Modal / Alert System
   ============================================= */
.oes-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, visibility 0.25s;
}
.oes-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.oes-modal-box {
    background: var(--oes-bg-surface);
    border: 1px solid var(--oes-border-purple);
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    padding: 0;
    box-shadow: 0 24px 64px rgba(124, 58, 237, 0.25), 0 0 0 1px rgba(124, 58, 237, 0.1);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}
.oes-modal-overlay.active .oes-modal-box {
    transform: scale(1) translateY(0);
}
.oes-modal-icon-bar {
    padding: 28px 28px 0;
    text-align: center;
}
.oes-modal-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 28px;
}
.oes-modal-icon-circle.success { background: rgba(34, 197, 94, 0.15); color: #22c55e; }
.oes-modal-icon-circle.danger  { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.oes-modal-icon-circle.warning { background: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.oes-modal-icon-circle.info    { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }
.oes-modal-icon-circle.confirm { background: rgba(124, 58, 237, 0.15); color: #a78bfa; }

.oes-modal-body {
    padding: 20px 28px 8px;
    text-align: center;
}
.oes-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--oes-text-primary);
    margin-bottom: 10px;
}
.oes-modal-message {
    font-size: 14px;
    color: var(--oes-text-muted);
    line-height: 1.65;
    margin-bottom: 0;
}
.oes-modal-message ul {
    text-align: left;
    margin: 12px 0 0 0;
    padding-left: 20px;
}
.oes-modal-message ul li {
    margin-bottom: 6px;
    font-size: 13px;
}
.oes-modal-footer {
    padding: 16px 28px 24px;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.oes-modal-footer .oes-btn {
    min-width: 120px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.oes-modal-footer .oes-btn-cancel {
    background: transparent;
    border: 1px solid var(--oes-border);
    color: var(--oes-text-muted);
}
.oes-modal-footer .oes-btn-cancel:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--oes-text-muted);
}
.oes-modal-footer .oes-btn-confirm-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border: none;
    color: #fff;
}
.oes-modal-footer .oes-btn-confirm-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.35);
}
.oes-modal-footer .oes-btn-confirm-primary {
    background: linear-gradient(135deg, var(--oes-primary), var(--oes-accent));
    border: none;
    color: #fff;
}
.oes-modal-footer .oes-btn-confirm-primary:hover {
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}
.oes-modal-footer .oes-btn-ok {
    background: linear-gradient(135deg, var(--oes-primary), var(--oes-accent));
    border: none;
    color: #fff;
    min-width: 140px;
}
