/* ==================== ESTILOS DA PÁGINA ÁUDIO ==================== */
/*
 * Estilos específicos para a página Áudio.
 * Design minimalista com empty state centralizado.
 */

/* ==================== EMPTY STATE ==================== */

.audio-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 60vh;
    padding: 40px;
    text-align: center;
}

.audio-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    opacity: 0.6;
    transition: opacity var(--transition-speed) var(--transition-ease);
}

.audio-empty-icon svg {
    width: 100%;
    height: 100%;
}

.audio-empty-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.audio-empty-description {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    max-width: 400px;
    line-height: 1.6;
}

/* ==================== RESPONSIVIDADE ==================== */

@media (max-width: 768px) {
    .audio-empty-state {
        min-height: 50vh;
        padding: 32px 24px;
    }
    
    .audio-empty-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 24px;
    }
    
    .audio-empty-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .audio-empty-description {
        font-size: 14px;
    }
}

