* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fdfdfd;
    color: #1f2937;
    height: 100%;
    padding: 20px;
    overflow: hidden;
    margin: 0;
}

.container {
    max-width: 100%;
    width: 100%;
    height: calc(100% - 40px);
    margin: 0 auto;
    background: transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content { 
    padding: 0; 
    width: 100%; 
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ----- AUDIO SECTION ---------------------------------------------- */
.audio-section {
    padding: 20px;
    margin-bottom: 24px;
    border-radius: 20px;
    text-align: center;
    color: #374151;
    width: 100%;
    overflow: visible !important;
    flex-shrink: 0;
}

.audio-controls { 
    display: flex; 
    flex-direction: column;
    align-items: center;
    gap: 16px; 
    margin-bottom: 28px; 
    overflow: visible !important;
}

/* FORCE LARGE DESKTOP SIZES - NO MEDIA QUERY DEPENDENCY */
.player-pill {
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 50px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(168, 85, 247, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    min-width: 60%;
    max-width: 525px;
}

.progress-controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 525px;
    padding: 0 15px;
}

/* Simplified button styling - removed conflicting logic */
.nav-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    border: none !important;
    color: #475569 !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.nav-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    color: #334155 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px) !important;
}

.play-btn {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3) !important;
}

.play-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%) !important;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Separate styling for each toggle button type */
.toggle-btn {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    border: none !important;
    color: #475569 !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.toggle-btn:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #cbd5e1 100%) !important;
    color: #334155 !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px) !important;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3) !important;
}

.toggle-btn.active:hover {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%) !important;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4) !important;
    transform: translateY(-1px) !important;
}

.toggle-btn.speed-100 {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3) !important;
}

.toggle-btn.speed-100:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4) !important;
    transform: translateY(-1px) !important;
}

.toggle-btn.speed-75 {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3) !important;
}

.toggle-btn.speed-75:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4) !important;
    transform: translateY(-1px) !important;
}

.toggle-btn.speed-50 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3) !important;
}

.toggle-btn.speed-50:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
    transform: translateY(-1px) !important;
}

.secondary-btn {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%) !important;
    color: white !important;
    box-shadow: 0 4px 16px rgba(168, 85, 247, 0.3) !important;
}

.secondary-btn:hover {
    background: linear-gradient(135deg, #9333ea 0%, #db2777 100%) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* FORCE LARGE BUTTONS - OVERRIDE EVERYTHING */
.nav-btn,
.toggle-btn:not(.secondary-btn) {
    width: 45px;
    height: 45px;
    font-size: 15px;
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.secondary-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
    flex-shrink: 0;
}

.progress-container { 
    flex-grow: 0;
    flex-shrink: 0;
    width: 135px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(168, 85, 247, 0.4);
    border-radius: 20px;
    overflow: hidden;
    margin: 0 9px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-controls-row #timeDisplay {
    flex-shrink: 0;
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    min-width: 75px;
    text-align: center;
    font-weight: 600;
}

.nav-btn,
.play-btn,
.toggle-btn { 
    border: none; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: all .3s ease; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    outline: none;
    position: relative;
}

.nav-btn:disabled { 
    opacity:0.3; 
    cursor:not-allowed; 
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    transition: flex 0.3s ease;
}

.text-section.collapsed {
    flex: 0;
    min-height: 0;
}

.hint-display {
    margin: 20px 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 100%);
    border: 2px solid #e879f9;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(232, 121, 249, 0.1);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hint-content {
    font-size: 18px;
    color: #374151;
    font-weight: 500;
    line-height: 1.5;
}

.play-btn {
    position: relative;
    width: 72px; 
    height: 72px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
    font-size: 28px;
    color: white;
}

.play-btn:hover:not(:disabled) { 
    transform: translateY(-3px); 
    box-shadow: 0 12px 32px rgba(168, 85, 247, 0.4);
}

.play-btn:disabled{
    opacity:.5;
    cursor:not-allowed;
}

.play-btn::before { 
    content:''; 
    position:absolute; 
    left:50%; 
    top:50%; 
    transform:translate(-50%,-50%); 
    z-index: 2;
}

.play-btn.playing::before { 
    width:4px;
    height:20px;
    background:white;
    box-shadow:8px 0 0 white; 
}

.play-btn:not(.playing)::before { 
    border-left:12px solid white; 
    border-top:8px solid transparent; 
    border-bottom:8px solid transparent; 
}

#timeDisplay { 
    min-width:110px; 
    font-size:16px; 
    color:#6b7280; 
    font-weight:500; 
    margin-left: 8px; 
    margin-right: 8px;
}

.progress-bar { 
    height:100%; 
    width:0%; 
    background:linear-gradient(90deg, #a855f7, #ec4899); 
    border-radius:20px; 
    transition:width .3s ease;
}

.input-area { 
    display:flex; 
    flex-direction:column; 
    gap:20px; 
    padding: 0; 
}

.input-field {
    width:100%; 
    min-height:75px; 
    padding:18px 22px;
    background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 100%); 
    color:#374151;
    border:2px solid #e879f9; 
    border-radius: 16px;
    font-size:22px;
    line-height:1.3;
    resize:vertical;
    transition:all .3s ease;
    box-shadow: 0 4px 16px rgba(232, 121, 249, 0.1);
}

.input-field:focus { 
    border-color:#c084fc; 
    box-shadow:0 0 0 4px rgba(192, 132, 252, 0.15), 0 4px 16px rgba(232, 121, 249, 0.2); 
    outline:none; 
    transform: translateY(-1px);
}

.input-field::placeholder {
    font-size: 17px !important;
    color: #9CA3AF;
    opacity: 1;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.live-feedback {
    min-height:56px;
    padding:18px 22px;
    background: linear-gradient(135deg, #ecfdf5 0%, #fef3ff 100%); 
    border: none; 
    border-radius: 16px;
    font-size:22px;
    line-height:1.3;
    white-space:pre-wrap; 
    word-break:break-word;
    color: #9ca3af;
    box-shadow: 0 4px 16px rgba(167, 139, 250, 0.1);
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.char-correct{color:#059669;font-weight:500;} 
.char-wrong-position{color:#d97706;font-weight:500;} 
.char-wrong{color:#dc2626;text-decoration:underline;font-weight:500;} 
.char-missing{color:#d97706;font-style:italic;font-weight:500;} 
.char-extra{color:#2563eb;font-weight:500;} 
.char-word-boundary,.char-char-space{color:#9ca3af;}
.char-punctuation{color:#9ca3af;font-weight:400;}

.options { 
    display: none;
}

.stats-section {
    margin: 32px 0 0 0;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
    flex-shrink: 0;
    max-height: 50vh;
    overflow-y: auto;
    transition: margin-top 0.3s ease;
}

.stats-section.active {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.stats-with-export {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stats-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    letter-spacing: -0.025em;
}

.stats-actions {
    display: flex;
    gap: 8px;
}

.stats-action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    outline: none;
}

.restart-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.restart-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.export-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 10px;
}

.export-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transform: translateY(-1px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    padding: 16px 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    border-color: rgba(168, 85, 247, 0.4);
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #e879f9;
    margin-bottom: 4px;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.2;
}

.reference-text{
    margin-top:24px;
    padding:20px;
    background:#fef9e7;
    border:1px solid #fcd34d;
    border-radius:8px;
    color:#92400e;
    display:none;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.sentence-results {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.sentences-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sentence-result {
    font-size: 18px;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.sentence-result:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(168, 85, 247, 0.25);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(168, 85, 247, 0.15);
    transform: translateY(-1px);
}

.result-word-correct {
    color: #059669;
    font-weight: 500;
}

.result-word-wrong {
    color: #dc2626;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
    position: relative;
}

.result-word-wrong:hover {
    background: rgba(220, 38, 38, 0.1);
    border-radius: 4px;
    padding: 2px 4px;
    margin: -2px -4px;
}

.result-word-missing {
    color: #d97706;
    font-style: italic;
    display: inline-block;
    min-width: 1em;
    cursor: pointer;
    position: relative;
    white-space: pre; /* Preserve spaces in underscores */
    font-weight: 500;
}

.result-word-missing:hover {
    background: rgba(217, 119, 6, 0.1);
    border-radius: 4px;
    padding: 2px 4px;
    margin: -2px -4px;
}

.result-word-extra {
    color: #2563eb;
    font-weight: 500;
    background: rgba(37, 99, 235, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

.word-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.word-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1f2937;
}

.word-tooltip.show {
    opacity: 1;
    pointer-events: auto;
}

.word-tooltip.adjust-left {
    left: 0;
    transform: translateX(0);
}

.word-tooltip.adjust-right {
    left: auto;
    right: 0;
    transform: translateX(0);
}

.word-tooltip.adjust-left::after {
    left: 20px;
}

.word-tooltip.adjust-right::after {
    left: auto;
    right: 20px;
}

.export-controls {
    text-align: center;
    margin: 24px 0;
    padding: 16px;
}

.toggle-btn.end-button {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1;
    padding: 8px 12px;
}

.toggle-btn.end-button:hover {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    transform: translateY(-2px);
}

 /* LOADING OVERLAY STYLES */
.loading-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    z-index: 10000; display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-overlay.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-content {
    text-align: center; background: rgba(255, 255, 255, 0.99);
    border: 3px solid #a855f7; border-radius: 20px; padding: 50px 60px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3); max-width: 450px; width: 90%;
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}
.loading-spinner {
    width: 80px; height: 80px; border: 6px solid rgba(168, 85, 247, 0.2);
    border-top: 6px solid #a855f7; border-radius: 50%;
    animation: spin 1s linear infinite; margin: 0 auto 24px auto;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.loading-text { font-size: 20px; font-weight: 700; color: #374151; margin-bottom: 12px; }
.loading-error { margin-top: 24px; }
.error-message { font-size: 16px; color: #dc2626; margin-bottom: 16px; font-weight: 500; }
.retry-btn {
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%); color: white;
    border: none; border-radius: 12px; padding: 12px 24px; font-size: 16px;
    cursor: pointer; transition: all 0.3s ease;
}

.focus-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: inline-block;
}

.focus-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 
        inset 0 0 0 2px currentColor,
        inset 0 0 0 5px transparent,
        inset 0 0 0 7px currentColor;
}

@media (max-width: 600px) {
    body { padding: 10px; }
    .audio-section{ padding: 15px; }
    
    .input-field::placeholder {
        font-size: 14px !important;
        line-height: 1.2;
    }

    .input-field, .live-feedback{ 
        padding: 12px 18px; 
        font-size: 18px;
        min-height: 50px;
    }

    .live-feedback {
        font-size: 18px;
        min-height: 44px;
    }

    .player-pill {
        padding: 8px 12px !important;
        gap: 8px !important;
        background: rgba(255, 255, 255, 0.98);
        border: 2px solid rgba(168, 85, 247, 0.4);
        box-shadow: 
            0 12px 40px rgba(0, 0, 0, 0.25),
            0 4px 12px rgba(168, 85, 247, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
        max-width: calc(100vw - 40px) !important;
        min-width: auto !important;
        overflow: hidden;
    }

    .progress-container {
        width: 80px !important;
        height: 10px !important;
        background: rgba(255, 255, 255, 0.95);
        border: 2px solid rgba(168, 85, 247, 0.4);
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.2),
            inset 0 2px 4px rgba(0, 0, 0, 0.1);
        margin: 0 4px !important;
    }

    .progress-controls-row {
        max-width: calc(100vw - 60px) !important;
        gap: 6px !important;
        padding: 0 10px !important;
    }

    .nav-btn, .toggle-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 15px !important;
    }

    .play-btn {
        width: 53px !important;
        height: 53px !important;
        font-size: 22px !important;
    }

    .secondary-btn {
        width: 31px !important;
        height: 31px !important;
        font-size: 11px !important;
    }

    .progress-controls-row #timeDisplay {
        font-size: 10px !important;
        min-width: 50px !important;
        font-weight: normal !important;
    }

    .hint-display {
        margin: 15px 0;
        padding: 12px 16px;
    }
    
    .hint-content {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Mobile stats styling - clean design */
    .stats-header {
        margin-bottom: 8px;
    }

    .stats-title {
        font-size: 14px;
    }

    .stats-actions {
        gap: 6px;
    }

    .stats-action-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .export-btn {
        font-size: 8px;
    }

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

    .stat-item {
        padding: 12px 8px;
    }

    .stat-value {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stats-with-export {
        gap: 12px;
        margin-bottom: 16px;
    }

    .stats-section.active {
        margin-top: 10px !important;
        padding-top: 10px !important;
    }
}

/* Desktop override - MUST come after mobile to take precedence */
@media (min-width: 601px) {
    .player-pill {
        padding: 12px 30px !important;
        gap: 15px !important;
    }

    .progress-controls-row {
        max-width: 525px !important;
        gap: 15px !important;
        padding: 0 15px !important;
    }

    .progress-container {
        width: 135px !important;
        height: 12px !important;
        margin: 0 9px !important;
    }

    .progress-controls-row #timeDisplay {
        font-size: 12px !important;
        min-width: 75px !important;
        font-weight: 600 !important;
    }

    .nav-btn,
    .toggle-btn:not(.secondary-btn) {
        width: 45px !important;
        height: 45px !important;
        font-size: 15px !important;
    }

    .play-btn {
        width: 60px !important;
        height: 60px !important;
        font-size: 24px !important;
    }

    .secondary-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }
}

/* Progress indicator on play button */
.play-btn.mid-sentence::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.4);
}
