/* 
 * LiteMath EGE Tracker - Professional Blue Theme
 * Version: 5.5
 * Color Scheme: Blue Gradient (#1565C0 to #0D47A1)
 */

/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════ */
:root {
    --lm-primary: #1565C0;
    --lm-primary-dark: #0D47A1;
    --lm-primary-light: #42A5F5;
    --lm-secondary: #1976D2;
    --lm-accent: #2196F3;
    --lm-gradient: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
    --lm-gradient-light: linear-gradient(135deg, #42A5F5 0%, #1565C0 100%);
    --lm-success: #2E7D32;
    --lm-success-bg: #E8F5E9;
    --lm-warning: #F57C00;
    --lm-warning-bg: #FFF3E0;
    --lm-error: #C62828;
    --lm-error-bg: #FFEBEE;
    --lm-text: #263238;
    --lm-text-secondary: #546E7A;
    --lm-border: #E0E0E0;
    --lm-bg: #FAFAFA;
    --lm-card-bg: #FFFFFF;
    --lm-shadow: 0 2px 8px rgba(21, 101, 192, 0.08);
    --lm-shadow-hover: 0 8px 24px rgba(21, 101, 192, 0.15);
    --lm-radius: 8px;
    --lm-radius-lg: 12px;
}

/* ═══════════════════════════════════════════════════════════
   BASE LAYOUT
   ═══════════════════════════════════════════════════════════ */
.litemath-dashboard,
.litemath-sprint-view {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--lm-text);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   WELCOME HEADER
   ═══════════════════════════════════════════════════════════ */
.litemath-welcome {
    background: var(--lm-gradient);
    color: white;
    padding: 32px;
    border-radius: var(--lm-radius-lg);
    margin-bottom: 32px;
    box-shadow: var(--lm-shadow-hover);
}

.litemath-welcome h2 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.litemath-welcome p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   STATISTICS CARDS
   ═══════════════════════════════════════════════════════════ */
.litemath-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.litemath-stat-card {
    background: var(--lm-card-bg);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    box-shadow: var(--lm-shadow);
}

.litemath-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lm-shadow-hover);
    border-color: var(--lm-primary-light);
}

.litemath-stat-card .stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lm-gradient-light);
    color: white;
    border-radius: var(--lm-radius);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.litemath-stat-card .stat-content h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--lm-primary-dark);
    line-height: 1.2;
}

.litemath-stat-card .stat-content p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: var(--lm-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════ */
.litemath-section {
    margin-bottom: 32px;
}

.litemath-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--lm-border);
}

.litemath-section-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--lm-text);
}

/* ═══════════════════════════════════════════════════════════
   SPRINT CARDS
   ═══════════════════════════════════════════════════════════ */
.litemath-sprints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.litemath-sprint-card {
    background: var(--lm-card-bg);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-lg);
    padding: 24px;
    transition: all 0.2s ease;
    box-shadow: var(--lm-shadow);
    position: relative;
    overflow: hidden;
}

.litemath-sprint-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--lm-gradient);
}

.litemath-sprint-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--lm-shadow-hover);
}

.litemath-sprint-card h4 {
    margin: 0 0 12px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--lm-text);
}

.litemath-sprint-card .sprint-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--lm-text-secondary);
}

.litemath-sprint-card .sprint-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Progress Bar */
.litemath-progress-bar {
    height: 8px;
    background: #E3F2FD;
    border-radius: 4px;
    overflow: hidden;
    margin: 16px 0;
}

.litemath-progress-bar .progress-fill {
    height: 100%;
    background: var(--lm-gradient);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.litemath-sprint-card .progress-text {
    font-size: 13px;
    color: var(--lm-text-secondary);
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.litemath-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--lm-radius);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    line-height: 1.4;
}

.litemath-btn-primary {
    background: var(--lm-gradient);
    color: white;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.25);
}

.litemath-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.35);
    color: white;
}

.litemath-btn-secondary {
    background: white;
    color: var(--lm-primary);
    border: 2px solid var(--lm-primary);
}

.litemath-btn-secondary:hover {
    background: #E3F2FD;
}

.litemath-btn-success {
    background: linear-gradient(135deg, #43A047 0%, #2E7D32 100%);
    color: white;
}

.litemath-btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.35);
}

.litemath-btn-outline {
    background: transparent;
    color: var(--lm-primary);
    border: 2px solid var(--lm-border);
}

.litemath-btn-outline:hover {
    border-color: var(--lm-primary);
    background: #E3F2FD;
}

.litemath-btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

.litemath-btn-lg {
    padding: 14px 28px;
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════
   CONTENT ITEMS
   ═══════════════════════════════════════════════════════════ */
.litemath-content-item {
    background: var(--lm-card-bg);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-lg);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--lm-shadow);
    transition: all 0.2s ease;
}

.litemath-content-item:hover {
    box-shadow: var(--lm-shadow-hover);
}

.litemath-content-item.content-item-completed {
    border-left: 4px solid var(--lm-success);
}

.litemath-content-item.content-item-pending {
    border-left: 4px solid var(--lm-primary-light);
}

.content-item-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--lm-border);
}

.content-item-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lm-gradient);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.content-item-info {
    flex: 1;
}

.content-item-info h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--lm-text);
}

.content-item-info .content-type {
    display: inline-block;
    padding: 3px 10px;
    background: #E3F2FD;
    color: var(--lm-primary);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.content-item-info .content-meta {
    color: var(--lm-text-secondary);
    font-size: 13px;
}

.completion-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--lm-success-bg);
    color: var(--lm-success);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.content-item-body {
    padding: 20px;
}

.content-item-actions {
    padding: 16px 20px;
    background: #FAFAFA;
    border-top: 1px solid var(--lm-border);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.completed-date {
    color: var(--lm-success);
    font-size: 13px;
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   LESSON CONTENT
   ═══════════════════════════════════════════════════════════ */
.lesson-content-full {
    font-size: 15px;
    line-height: 1.8;
    color: var(--lm-text);
}

.lesson-content-full h1,
.lesson-content-full h2,
.lesson-content-full h3,
.lesson-content-full h4 {
    color: var(--lm-text);
    margin-top: 24px;
    margin-bottom: 12px;
}

.lesson-content-full p {
    margin-bottom: 16px;
}

.lesson-content-full pre {
    background: #263238;
    color: #ECEFF1;
    padding: 16px;
    border-radius: var(--lm-radius);
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.5;
}

.lesson-content-full code {
    background: #ECEFF1;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--lm-primary-dark);
}

.lesson-content-full pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.lesson-content-full table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.lesson-content-full th,
.lesson-content-full td {
    padding: 12px;
    border: 1px solid var(--lm-border);
    text-align: left;
}

.lesson-content-full th {
    background: #E3F2FD;
    font-weight: 600;
}

.lesson-content-full blockquote {
    border-left: 4px solid var(--lm-primary);
    margin: 16px 0;
    padding: 12px 20px;
    background: #E3F2FD;
    border-radius: 0 var(--lm-radius) var(--lm-radius) 0;
}

/* ═══════════════════════════════════════════════════════════
   VIDEO WRAPPER
   ═══════════════════════════════════════════════════════════ */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--lm-radius-lg);
    background: #000;
    margin: 16px 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ═══════════════════════════════════════════════════════════
   TASK BLOCKS
   ═══════════════════════════════════════════════════════════ */
.lm-task-block {
    background: #F5F9FF;
    border: 1px solid #BBDEFB;
    border-radius: var(--lm-radius-lg);
    padding: 20px;
    margin: 16px 0;
}

.lm-task-block h5 {
    margin: 0 0 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--lm-primary-dark);
}

.lm-task-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--lm-border);
    border-radius: var(--lm-radius);
    font-size: 15px;
    transition: all 0.2s;
}

.lm-task-input:focus {
    outline: none;
    border-color: var(--lm-primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.lm-task-result {
    padding: 12px 16px;
    border-radius: var(--lm-radius);
    font-weight: 600;
    margin-top: 12px;
}

.lm-task-result.correct {
    background: var(--lm-success-bg);
    color: var(--lm-success);
}

.lm-task-result.incorrect {
    background: var(--lm-error-bg);
    color: var(--lm-error);
}

/* Options */
.lm-options-group {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.lm-option {
    padding: 14px 18px;
    border: 2px solid var(--lm-border);
    border-radius: var(--lm-radius);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lm-option:hover {
    border-color: var(--lm-primary-light);
    background: #F5F9FF;
}

.lm-option.selected {
    border-color: var(--lm-primary);
    background: #E3F2FD;
}

.lm-option.correct {
    border-color: var(--lm-success);
    background: var(--lm-success-bg);
}

.lm-option.incorrect {
    border-color: var(--lm-error);
    background: var(--lm-error-bg);
}

.lm-radio,
.lm-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #B0BEC5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.lm-radio {
    border-radius: 50%;
}

.lm-checkbox {
    border-radius: 4px;
}

.lm-option.selected .lm-radio,
.lm-option.selected .lm-checkbox {
    border-color: var(--lm-primary);
    background: var(--lm-primary);
    color: white;
}

/* ═══════════════════════════════════════════════════════════
   REVIEW TASK (PEER/MANUAL)
   ═══════════════════════════════════════════════════════════ */
.review-task-info {
    background: #E3F2FD;
    border-radius: var(--lm-radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--lm-primary);
}

.review-task-info strong {
    color: var(--lm-primary-dark);
    font-size: 16px;
}

.review-task-condition {
    background: white;
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-lg);
    padding: 20px;
    margin-bottom: 20px;
}

.review-task-condition h4 {
    margin: 0 0 12px 0;
    color: var(--lm-text);
    font-size: 15px;
    font-weight: 600;
}

/* File Upload */
.review-submit-form {
    margin-top: 20px;
}

.file-upload-area {
    border: 2px dashed var(--lm-primary);
    border-radius: var(--lm-radius-lg);
    padding: 32px;
    text-align: center;
    background: #F5F9FF;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-area:hover {
    border-color: var(--lm-primary-dark);
    background: #E3F2FD;
}

.file-upload-area p {
    margin: 8px 0 0 0;
    color: var(--lm-text-secondary);
    font-size: 13px;
}

.selected-files {
    margin-top: 12px;
}

.selected-files .file-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: white;
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius);
    margin-bottom: 8px;
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════
   NOTICES & ALERTS
   ═══════════════════════════════════════════════════════════ */
.litemath-notice {
    padding: 16px 20px;
    border-radius: var(--lm-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.litemath-notice-info {
    background: #E3F2FD;
    border: 1px solid #90CAF9;
    color: var(--lm-primary-dark);
}

.litemath-notice-success {
    background: var(--lm-success-bg);
    border: 1px solid #A5D6A7;
    color: var(--lm-success);
}

.litemath-notice-warning {
    background: var(--lm-warning-bg);
    border: 1px solid #FFCC80;
    color: var(--lm-warning);
}

.litemath-notice-error {
    background: var(--lm-error-bg);
    border: 1px solid #EF9A9A;
    color: var(--lm-error);
}

/* ═══════════════════════════════════════════════════════════
   SPRINT PAGE HEADER
   ═══════════════════════════════════════════════════════════ */
.sprint-header {
    background: var(--lm-gradient);
    color: white;
    padding: 32px;
    border-radius: var(--lm-radius-lg);
    margin-bottom: 32px;
}

.sprint-header h2 {
    margin: 0 0 12px 0;
    font-size: 24px;
    font-weight: 600;
}

.sprint-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.sprint-header .litemath-progress-bar {
    background: rgba(255,255,255,0.2);
}

.sprint-header .litemath-progress-bar .progress-fill {
    background: white;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
    transition: opacity 0.2s;
}

.back-link:hover {
    opacity: 1;
    color: white;
}

/* ═══════════════════════════════════════════════════════════
   TABS
   ═══════════════════════════════════════════════════════════ */
.litemath-tabs {
    display: flex;
    border-bottom: 2px solid var(--lm-border);
    margin-bottom: 24px;
    gap: 4px;
}

.litemath-tab {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--lm-text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.litemath-tab:hover {
    color: var(--lm-primary);
}

.litemath-tab.active {
    color: var(--lm-primary);
    border-bottom-color: var(--lm-primary);
}

/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════ */
.litemath-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--lm-text-secondary);
}

.litemath-empty-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.litemath-empty h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--lm-text);
}

.litemath-empty p {
    margin: 0;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   AUTH FORMS
   ═══════════════════════════════════════════════════════════ */
.litemath-auth-container {
    max-width: 420px;
    margin: 40px auto;
    padding: 40px;
    background: var(--lm-card-bg);
    border: 1px solid var(--lm-border);
    border-radius: var(--lm-radius-lg);
    box-shadow: var(--lm-shadow-hover);
}

.litemath-auth-container h2 {
    margin: 0 0 24px 0;
    text-align: center;
    font-size: 24px;
    color: var(--lm-text);
}

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

.litemath-form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--lm-text);
}

.litemath-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--lm-border);
    border-radius: var(--lm-radius);
    font-size: 15px;
    transition: all 0.2s;
}

.litemath-form-group input:focus {
    outline: none;
    border-color: var(--lm-primary);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.litemath-auth-container .litemath-btn {
    width: 100%;
    margin-top: 8px;
}

.litemath-auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--lm-text-secondary);
}

.litemath-auth-switch a {
    color: var(--lm-primary);
    text-decoration: none;
    font-weight: 600;
}

.litemath-auth-switch a:hover {
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .litemath-dashboard,
    .litemath-sprint-view {
        padding: 16px;
    }
    
    .litemath-welcome {
        padding: 24px;
    }
    
    .litemath-welcome h2 {
        font-size: 20px;
    }
    
    .litemath-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .litemath-sprints-grid {
        grid-template-columns: 1fr;
    }
    
    .content-item-header {
        padding: 16px;
    }
    
    .content-item-body {
        padding: 16px;
    }
    
    .sprint-header {
        padding: 24px;
    }
    
    .sprint-header h2 {
        font-size: 20px;
    }
    
    .sprint-header-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .litemath-tabs {
        overflow-x: auto;
    }
    
    .litemath-auth-container {
        margin: 20px;
        padding: 24px;
    }
    
    /* Mobile menu button — ensure visibility in burger menus */
    .lm-menu-account {
        margin: 8px 0 !important;
        padding: 0 !important;
    }
    
    .lm-menu-btn {
        padding: 10px 16px !important;
        font-size: 14px !important;
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
}

/* Floating mobile login button for themes that hide menu items */
.lm-mobile-fab {
    display: none;
}

@media (max-width: 768px) {
    .lm-mobile-fab {
        display: flex !important;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--lm-gradient, linear-gradient(135deg, #007AFF, #0055CC));
        color: #fff;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 16px rgba(0, 122, 255, 0.4);
        text-decoration: none;
        font-size: 22px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    
    .lm-mobile-fab:hover,
    .lm-mobile-fab:focus {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(0, 122, 255, 0.5);
        color: #fff;
    }
    
    .lm-mobile-fab svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }
}

/* ═══════════════════════════════════════════════════════════
   MENU BUTTON (HEADER)
   ═══════════════════════════════════════════════════════════ */
.lm-menu-account {
    list-style: none !important;
    margin-left: 12px !important;
}

.lm-menu-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 24px !important;
    background: var(--lm-gradient) !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.25) !important;
    white-space: nowrap !important;
    line-height: 1.4 !important;
    border: none !important;
}

.lm-menu-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.35) !important;
    color: #fff !important;
}

.lm-menu-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════ */
@media print {
    .litemath-welcome,
    .litemath-btn,
    .content-item-actions {
        display: none !important;
    }
    
    .litemath-content-item {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}
