.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay[hidden] {
    display: none;
}

.modal {
    background: var(--white-color);
    border-radius: 12px;
    padding: 32px 36px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.modal__title {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0;
}

.modal__subtitle {
    margin-bottom: 16px;
    color: var(--dark-gray-color);
}

.modal__actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
