/**
 * Soundcheck Indicators Styles
 * Session stats display
 */

/* Session stats container - positioned at the very bottom, below preset selector */
/* NOTE: On iOS Capacitor, env(safe-area-inset-bottom) may not work for remote URLs,
   so we use 34px as the fallback (standard iPhone safe area height) */
.session-stats {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding-bottom: calc(8px + var(--safe-area-inset-bottom, env(safe-area-inset-bottom, 34px)));
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    z-index: calc(var(--z-nav) - 1); /* Below preset selector */
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat-separator {
    color: rgba(255, 255, 255, 0.2);
}

.stat-thumbs-down {
    color: rgba(239, 68, 68, 0.6);
}

.stat-thumbs-up {
    color: rgba(74, 222, 128, 0.6);
}

.stat-thumbs-down svg,
.stat-thumbs-up svg {
    opacity: 0.8;
}

.stat-remaining {
    color: rgba(255, 255, 255, 0.35);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .session-stats {
        font-size: 12px;
        padding-bottom: calc(8px + var(--safe-area-inset-bottom, env(safe-area-inset-bottom, 34px)));
    }
}
