/* Стили для уведомлений */
.confirmation_pool {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #65758b77;
    display: grid;
    justify-items: center;
    align-items: center;
    z-index: 2000;
}

.confirmation_message {
    min-width: 200px;
    min-height: 100px;
    max-width: 90vw;
    max-height: 90vh;
    background-color: var(--color-white);
    border-radius: 20px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.confirmation_message > h1, p {
    margin: 0;
}

.confirmation_message input {
    width: 100%;
}

.confirmation_buttons {
    margin-top: 12px;
    height: 32px;
    display: flex;
    gap: 8px;
}

.confirmation_buttons button {
    padding: 0 24px;
}
