/* Общий стиль для кнопок модалки */
.sub-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.sub-btn {
    appearance: none;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: opacity .15s ease, background-color .15s ease;
}

/* Кнопка отмены */
.sub-btn-cancel {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.sub-btn-cancel:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Кнопка сохранения */
.sub-btn-save {
    background: #1677ff; /* фирменный светло-синий */
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.35);
}

.sub-btn-save:hover {
    background: #1a7eff;
}

/* Чтобы кнопки не выглядели мелкими */
.sub-btn:active {
    transform: scale(0.97);
}
