/* Стили генератора музыки (ACE-Step). */

.generator-page .card {
    box-shadow: var(--shadow, 0 2px 5px rgba(0, 0, 0, 0.1));
}

.api-status {
    font-weight: 500;
}

.player-block audio {
    width: 100%;
    max-width: 480px;
}

/* Модалка настроек: заголовки групп */
.generator-settings-group-title {
    font-weight: 600;
    color: var(--primary-color, #2C3E50);
    margin-top: 12px;
    padding-bottom: 4px;
    border-bottom: 1px solid #dee2e6;
}

/* Предупреждение анонима */
.generator-anon-warning {
    border-left: 4px solid #ffc107;
}

/* Большой зелёный значок «ОК» после успешной генерации */
.done-badge {
    width: 96px;
    height: 96px;
    margin: 0 auto;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    line-height: 96px;
    text-align: center;
    box-shadow: 0 4px 14px rgba(40, 167, 69, 0.4);
    animation: done-pop 0.4s ease;
}

@keyframes done-pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Модалка настроек: подсветка изменённых значений и кнопка сброса */
.setting-block.is-changed {
    border-left: 4px solid #28a745;
    padding-left: 10px;
    background: #f2fbf2;
    border-radius: 4px;
}

.setting-block.is-changed .btn-reset {
    border-color: #28a745;
    color: #28a745;
}

.btn-reset {
    opacity: 0.85;
    transition: opacity 0.15s;
}

.btn-reset:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .generator-page .d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }
    .generator-page .ms-auto {
        margin-left: 0 !important;
    }
}
