/* ===== CSS Variables ===== */
:root {
    --wsm-primary: #1a2980;
    --wsm-primary-light: #4b6cb7;
    --wsm-secondary: #26d0ce;
    --wsm-bg-body: #0f0c29;
    --wsm-bg-card: #ffffff;
    --wsm-text-dark: #182848;
    --wsm-text-muted: #6c757d;
    --wsm-border-radius: 12px;
    --wsm-shadow: 0 4px 20px rgba(0,0,0,0.1);
    --wsm-transition: 0.3s ease;
    --wsm-font-base: clamp(0.75rem, 1.2vw, 1rem);
    --wsm-font-sm: clamp(0.6rem, 0.9vw, 0.8rem);
    --wsm-font-xs: clamp(0.5rem, 0.7vw, 0.7rem);
}

/* ===== Container ===== */
.wsm-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--wsm-bg-card);
    border-radius: var(--wsm-border-radius);
    overflow: hidden;
    box-shadow: var(--wsm-shadow);
    padding: 20px;
}

/* ===== Menu ===== */
.wsm-main-menu {
    display: flex;
    gap: clamp(8px, 1vw, 15px);
    margin-bottom: clamp(15px, 2vw, 25px);
    flex-wrap: wrap;
    justify-content: center;
}

.wsm-menu-btn {
    padding: clamp(10px, 1.2vw, 18px) clamp(15px, 2vw, 30px);
    font-size: clamp(0.8rem, 1.1vw, 1.1rem);
    font-weight: 700;
    border: none;
    border-radius: var(--wsm-border-radius);
    cursor: pointer;
    transition: all var(--wsm-transition);
    background: #e9ecef;
    color: #495057;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 12px);
    flex: 1 1 auto;
    min-width: clamp(130px, 20vw, 200px);
    justify-content: center;
}

.wsm-menu-btn i {
    font-size: clamp(0.9rem, 1.2vw, 1.3rem);
}

.wsm-menu-btn.active {
    background: linear-gradient(135deg, var(--wsm-primary-light), var(--wsm-secondary));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(75, 108, 183, 0.4);
}

.wsm-menu-btn .badge {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: clamp(0.5rem, 0.6vw, 0.65rem);
}

.wsm-menu-btn.active .badge {
    background: rgba(255,255,255,0.25);
}

@media (max-width: 600px) {
    .wsm-menu-btn {
        min-width: 100%;
        padding: 12px 18px;
    }
}

/* ===== Pages ===== */
.wsm-page {
    display: none;
    animation: wsmFadeIn 0.4s ease;
}

.wsm-page.active {
    display: block;
}

@keyframes wsmFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Quick Calculator ===== */
.wsm-quick-calculator {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: var(--wsm-border-radius);
    padding: clamp(12px, 2vw, 25px);
    margin-bottom: 20px;
    box-shadow: var(--wsm-shadow);
    border-right: 4px solid var(--wsm-primary-light);
}

.wsm-quick-calculator .wsm-quick-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(10px, 1.5vw, 15px);
    color: var(--wsm-text-dark);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    flex-wrap: wrap;
}

.wsm-quick-calculator .wsm-quick-title .badge {
    background: linear-gradient(90deg, var(--wsm-primary-light), var(--wsm-secondary));
    color: white;
    font-size: clamp(0.5rem, 0.6vw, 0.65rem);
    padding: 2px 10px;
    border-radius: 20px;
    margin-right: auto;
}

.wsm-quick-input-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(120px, 15vw, 180px), 1fr));
    gap: clamp(8px, 1vw, 15px);
    margin-bottom: 10px;
}

.wsm-quick-input-group {
    display: flex;
    flex-direction: column;
}

.wsm-quick-input-group label {
    font-weight: 700;
    margin-bottom: 4px;
    color: #444;
    font-size: clamp(0.65rem, 0.8vw, 0.85rem);
}

.wsm-quick-input-group input {
    padding: clamp(6px, 0.8vw, 10px);
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: clamp(0.75rem, 0.9vw, 0.95rem);
    text-align: center;
    transition: all var(--wsm-transition);
    font-weight: 600;
    background: white;
    width: 100%;
    min-width: 0;
}

.wsm-quick-input-group input:focus {
    border-color: var(--wsm-primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.2);
}

.wsm-quick-input-group input:disabled {
    background: #f0f0f0;
    color: #adb5bd;
    cursor: not-allowed;
    border-color: #e9ecef;
}

.wsm-quick-input-group input.invalid {
    border-color: #dc3545;
    background-color: #fff0f0;
}

.wsm-quick-input-group .wsm-error-message {
    color: #dc3545;
    font-size: clamp(0.5rem, 0.6vw, 0.65rem);
    font-weight: 600;
    margin-top: 3px;
    text-align: center;
    display: none;
}

.wsm-quick-input-group .wsm-error-message.show {
    display: block;
}

/* ===== Quick Results ===== */
.wsm-quick-results-wrapper {
    overflow-x: auto;
    margin-top: clamp(10px, 1.5vw, 15px);
    -webkit-overflow-scrolling: touch;
}

.wsm-quick-results-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    font-size: clamp(0.6rem, 0.8vw, 0.78rem);
}

.wsm-quick-results-table thead {
    background: linear-gradient(90deg, var(--wsm-primary), var(--wsm-primary-light));
}

.wsm-quick-results-table th {
    color: white;
    padding: clamp(4px, 0.6vw, 8px) clamp(3px, 0.4vw, 6px);
    text-align: center;
    font-size: clamp(0.5rem, 0.6vw, 0.65rem);
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.1);
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.2;
}

.wsm-quick-results-table td {
    padding: clamp(4px, 0.6vw, 8px) clamp(3px, 0.4vw, 6px);
    text-align: center;
    font-size: clamp(0.6rem, 0.8vw, 0.85rem);
    border-bottom: 1px solid #eee;
    font-weight: 600;
    background: white;
}

.wsm-quick-results-table tbody tr:last-child td {
    border-bottom: none;
}

.wsm-quick-results-table tbody tr:hover td {
    background: #f0f4ff;
}

.wsm-quick-results-table .wsm-qr-readonly {
    background: #f8f9fa;
    color: var(--wsm-text-dark);
}

/* ===== Shahrivar Section ===== */
.wsm-shahrivar-section {
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border-radius: var(--wsm-border-radius);
    padding: clamp(10px, 1.5vw, 18px) clamp(15px, 2vw, 25px);
    margin-bottom: 20px;
    box-shadow: var(--wsm-shadow);
    transition: all 0.5s ease;
    border-right: 4px solid #17a2b8;
}

.wsm-shahrivar-section.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.wsm-shahrivar-section .wsm-shahrivar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #0c5460;
    font-size: clamp(0.85rem, 1.1vw, 1rem);
    font-weight: 700;
    flex-wrap: wrap;
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group {
    max-width: clamp(150px, 25vw, 220px);
    flex: 1 1 auto;
    min-width: clamp(100px, 15vw, 150px);
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group label {
    font-weight: 700;
    margin-bottom: 4px;
    color: #444;
    font-size: clamp(0.65rem, 0.8vw, 0.85rem);
    text-align: center;
    display: block;
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group input {
    padding: clamp(6px, 0.8vw, 10px);
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: clamp(0.75rem, 0.9vw, 0.95rem);
    text-align: center;
    transition: all var(--wsm-transition);
    font-weight: 600;
    background: white;
    width: 100%;
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group input:focus {
    border-color: #17a2b8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.2);
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group input:disabled {
    background: #f0f0f0;
    color: #adb5bd;
    cursor: not-allowed;
    border-color: #e9ecef;
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group input.invalid {
    border-color: #dc3545;
    background-color: #fff0f0;
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group .wsm-error-message {
    color: #dc3545;
    font-size: clamp(0.5rem, 0.6vw, 0.65rem);
    font-weight: 600;
    margin-top: 3px;
    text-align: center;
    display: none;
}

.wsm-shahrivar-section .wsm-shahrivar-input-wrap .wsm-input-group .wsm-error-message.show {
    display: block;
}

.wsm-shahrivar-status-text {
    text-align: center;
    margin-top: 6px;
    font-size: clamp(0.65rem, 0.8vw, 0.8rem);
    font-weight: 600;
    color: var(--wsm-text-muted);
}

.wsm-shahrivar-status-text.active {
    color: #17a2b8;
}

.wsm-shahrivar-status-text.success {
    color: #28a745;
}

/* ===== Control Bar ===== */
.wsm-control-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(8px, 1vw, 15px);
    margin-bottom: clamp(12px, 1.5vw, 20px);
    padding: clamp(10px, 1.2vw, 15px);
    background: #f8f9fa;
    border-radius: 10px;
}

.wsm-control-group {
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.8vw, 12px);
    flex-wrap: wrap;
}

.wsm-control-group label {
    font-weight: 700;
    color: #444;
    font-size: clamp(0.75rem, 0.9vw, 1rem);
}

.wsm-control-group select {
    padding: clamp(6px, 0.7vw, 10px) clamp(10px, 1.2vw, 18px);
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: clamp(0.75rem, 0.85vw, 0.95rem);
    font-weight: 600;
    background: white;
    cursor: pointer;
    transition: all var(--wsm-transition);
}

.wsm-control-group select:focus {
    border-color: var(--wsm-primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.2);
}

.wsm-btn {
    padding: clamp(6px, 0.7vw, 10px) clamp(12px, 1.5vw, 20px);
    border: none;
    border-radius: 8px;
    font-size: clamp(0.75rem, 0.85vw, 0.95rem);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--wsm-transition);
}

.wsm-btn-primary {
    background: linear-gradient(90deg, var(--wsm-primary), var(--wsm-primary-light));
    color: white;
}

.wsm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 41, 128, 0.3);
}

.wsm-btn-success {
    background: linear-gradient(90deg, #28a745, #20c997);
    color: white;
}

.wsm-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

@media (max-width: 600px) {
    .wsm-control-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .wsm-control-group {
        justify-content: center;
    }
}

/* ===== Main Table ===== */
.wsm-table-wrapper {
    overflow-x: auto;
    margin-bottom: clamp(15px, 2vw, 25px);
    border-radius: 10px;
    box-shadow: var(--wsm-shadow);
    -webkit-overflow-scrolling: touch;
}

.wsm-main-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: clamp(0.55rem, 0.7vw, 0.78rem);
    table-layout: fixed;
}

.wsm-main-table th {
    background: linear-gradient(90deg, var(--wsm-primary), var(--wsm-primary-light));
    color: white;
    padding: clamp(4px, 0.5vw, 8px) clamp(2px, 0.3vw, 5px);
    text-align: center;
    font-weight: 700;
    font-size: clamp(0.45rem, 0.55vw, 0.7rem);
    position: sticky;
    top: 0;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.1);
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.2;
}

.wsm-main-table td {
    padding: clamp(3px, 0.4vw, 6px) clamp(2px, 0.3vw, 4px);
    text-align: center;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    word-wrap: break-word;
}

.wsm-main-table tr:nth-child(even) {
    background: #f8f9fa;
}

.wsm-main-table tr:hover {
    background: #e8f0fe;
}

.wsm-main-table input {
    width: 100%;
    padding: clamp(2px, 0.3vw, 5px) clamp(2px, 0.2vw, 4px);
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: clamp(0.5rem, 0.6vw, 0.75rem);
    text-align: center;
    transition: all var(--wsm-transition);
    min-width: clamp(20px, 3vw, 35px);
    max-width: clamp(35px, 5vw, 55px);
}

.wsm-main-table input:focus {
    border-color: var(--wsm-primary-light);
    outline: none;
    box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.2);
}

.wsm-main-table input:disabled {
    background: #f0f0f0;
    color: #6c757d;
    cursor: not-allowed;
}

.wsm-main-table input.invalid {
    border-color: #dc3545;
    background-color: #fff0f0;
}

.wsm-main-table .wsm-readonly-cell {
    background: #f8f9fa;
    font-weight: 600;
    color: var(--wsm-text-dark);
    padding: clamp(2px, 0.3vw, 5px) clamp(2px, 0.2vw, 4px);
    font-size: clamp(0.5rem, 0.6vw, 0.75rem);
}

.wsm-main-table .wsm-subject-name {
    font-weight: 700;
    text-align: right;
    padding-right: clamp(3px, 0.4vw, 6px);
    font-size: clamp(0.5rem, 0.6vw, 0.75rem);
}

/* ===== Status Styles ===== */
.wsm-status-pass {
    background: linear-gradient(135deg, #d4edda, #b7e4c7) !important;
    color: #155724 !important;
    font-weight: 800 !important;
    border-radius: 4px;
    padding: clamp(2px, 0.3vw, 4px) clamp(4px, 0.5vw, 8px);
    display: inline-block;
    font-size: clamp(0.5rem, 0.6vw, 0.7rem);
}

.wsm-status-pass::before { content: '✅ '; }

.wsm-status-fail {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb) !important;
    color: #721c24 !important;
    font-weight: 800 !important;
    border-radius: 4px;
    padding: clamp(2px, 0.3vw, 4px) clamp(4px, 0.5vw, 8px);
    display: inline-block;
    font-size: clamp(0.5rem, 0.6vw, 0.7rem);
}

.wsm-status-fail::before { content: '❌ '; }

.wsm-takmude-available {
    background: linear-gradient(135deg, #fff3cd, #ffeaa5) !important;
    color: #856404 !important;
    font-weight: 800 !important;
    border-radius: 4px;
    padding: clamp(2px, 0.3vw, 4px) clamp(4px, 0.5vw, 8px);
    display: inline-block;
    font-size: clamp(0.5rem, 0.6vw, 0.7rem);
    animation: wsmPulseGold 1.5s ease-in-out infinite;
}

.wsm-takmude-available::before { content: '⚠️ '; }

@keyframes wsmPulseGold {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.wsm-takmude-summer {
    background: linear-gradient(135deg, #d1ecf1, #a8e0e8) !important;
    color: #0c5460 !important;
    font-weight: 800 !important;
    border-radius: 4px;
    padding: clamp(2px, 0.3vw, 4px) clamp(4px, 0.5vw, 8px);
    display: inline-block;
    font-size: clamp(0.5rem, 0.6vw, 0.7rem);
    animation: wsmPulseBlue 1.5s ease-in-out infinite;
}

.wsm-takmude-summer::before { content: '🌙 '; }

@keyframes wsmPulseBlue {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.wsm-takmude-any-score {
    background: linear-gradient(135deg, #e8d5f5, #d5b8f0) !important;
    color: #6f42c1 !important;
    font-weight: 800 !important;
    border-radius: 4px;
    padding: clamp(2px, 0.3vw, 4px) clamp(4px, 0.5vw, 8px);
    display: inline-block;
    font-size: clamp(0.5rem, 0.6vw, 0.7rem);
    animation: wsmPulsePurple 1.5s ease-in-out infinite;
}

.wsm-takmude-any-score::before { content: '✨ '; }

@keyframes wsmPulsePurple {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.wsm-status-pass-shahrivar {
    background: linear-gradient(135deg, #d4edda, #b7e4c7) !important;
    color: #155724 !important;
    font-weight: 800 !important;
    border-radius: 4px;
    padding: clamp(2px, 0.3vw, 4px) clamp(4px, 0.5vw, 8px);
    display: inline-block;
    font-size: clamp(0.5rem, 0.6vw, 0.7rem);
}

.wsm-status-pass-shahrivar::before { content: '🌅 '; }

/* ===== Summary ===== */
.wsm-summary-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 25vw, 280px), 1fr));
    gap: clamp(10px, 1.5vw, 20px);
    margin: clamp(12px, 2vw, 25px) 0;
}

.wsm-summary-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: clamp(10px, 1.5vw, 18px);
    box-shadow: var(--wsm-shadow);
    border-right: 4px solid var(--wsm-primary-light);
}

.wsm-summary-card h4 {
    color: var(--wsm-text-dark);
    margin-bottom: clamp(8px, 1vw, 12px);
    font-size: clamp(0.85rem, 1vw, 1.1rem);
    border-bottom: 2px solid #e9ecef;
    padding-bottom: clamp(6px, 0.7vw, 10px);
}

.wsm-summary-card .wsm-item {
    display: flex;
    justify-content: space-between;
    padding: clamp(3px, 0.4vw, 6px) 0;
    border-bottom: 1px solid #e9ecef;
    font-size: clamp(0.7rem, 0.85vw, 0.95rem);
}

.wsm-summary-card .wsm-item:last-child {
    border-bottom: none;
}

.wsm-summary-card .wsm-label {
    font-weight: 600;
    color: #555;
}

.wsm-summary-card .wsm-value {
    font-weight: 700;
    color: var(--wsm-text-dark);
}

.wsm-final-status {
    padding: clamp(10px, 1.5vw, 16px) clamp(15px, 2vw, 25px);
    border-radius: 10px;
    text-align: center;
    font-size: clamp(0.9rem, 1.2vw, 1.3rem);
    font-weight: 700;
    margin: clamp(10px, 1.5vw, 18px) 0;
}

.wsm-final-status.passed-khordad {
    background: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
}

.wsm-final-status.passed-shahrivar {
    background: #d1ecf1;
    color: #0c5460;
    border: 2px solid #17a2b8;
}

.wsm-final-status.failed {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #dc3545;
}

.wsm-final-status.incomplete {
    background: #fff3cd;
    color: #856404;
    border: 2px solid #ffc107;
}

.wsm-final-status.transfer {
    background: #e8d5f5;
    color: #6f42c1;
    border: 2px solid #8b5cf6;
}

/* ===== Regulation ===== */
.wsm-regulation-page .wsm-alert-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: clamp(10px, 1.5vw, 18px) clamp(12px, 2vw, 22px);
    margin-bottom: 18px;
    font-weight: 700;
    color: #856404;
    font-size: clamp(0.75rem, 0.9vw, 0.95rem);
    line-height: 1.8;
}

.wsm-regulation-page .wsm-alert-box .wsm-alert-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.wsm-regulation-page .wsm-alert-box .wsm-alert-title i {
    font-size: clamp(1.2rem, 1.5vw, 1.8rem);
    color: #ffc107;
}

.wsm-regulation-page .wsm-alert-box .wsm-alert-item {
    padding-right: clamp(20px, 3vw, 40px);
    margin-top: 3px;
}

.wsm-regulation-page .wsm-alert-box .wsm-alert-item-sampad {
    padding-right: clamp(30px, 4vw, 50px);
    margin-top: 3px;
}

.wsm-regulation-page .wsm-alert-box .wsm-sampad-separator {
    border-top: 2px solid #ffc107;
    padding-top: 10px;
    margin-top: 10px;
}

.wsm-regulation-page .wsm-explanation {
    margin-top: 0;
    background: #f8f9fa;
    border-radius: 10px;
    padding: clamp(12px, 2vw, 25px);
}

.wsm-regulation-page .wsm-explanation h3 {
    color: var(--wsm-text-dark);
    margin-bottom: clamp(10px, 1.5vw, 18px);
    font-size: clamp(1rem, 1.4vw, 1.4rem);
    text-align: center;
}

.wsm-regulation-page .wsm-explanation ul {
    list-style-type: none;
    padding: 0 5px;
}

.wsm-regulation-page .wsm-explanation li {
    margin-bottom: clamp(8px, 1vw, 14px);
    padding: clamp(8px, 1vw, 14px) clamp(10px, 1.5vw, 18px);
    background: white;
    border-radius: 8px;
    line-height: 1.6;
    border-right: 4px solid var(--wsm-primary-light);
    font-size: clamp(0.75rem, 0.9vw, 0.95rem);
}

.wsm-regulation-page .wsm-explanation li i {
    margin-left: 8px;
    color: var(--wsm-primary-light);
}

.wsm-regulation-page .wsm-highlight {
    background: #fff3cd;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* ===== Scrollbar ===== */
.wsm-table-wrapper::-webkit-scrollbar,
.wsm-quick-results-wrapper::-webkit-scrollbar {
    height: 6px;
}

.wsm-table-wrapper::-webkit-scrollbar-track,
.wsm-quick-results-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.wsm-table-wrapper::-webkit-scrollbar-thumb,
.wsm-quick-results-wrapper::-webkit-scrollbar-thumb {
    background: var(--wsm-primary-light);
    border-radius: 3px;
}

.wsm-table-wrapper::-webkit-scrollbar-thumb:hover,
.wsm-quick-results-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--wsm-primary);
}

/* ===== Print ===== */
@media print {
    .wsm-main-menu { display: none; }
    .wsm-page:not(.active) { display: none !important; }
}