.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__content {
    background: #25E39A;
    padding: 2rem;
    border-radius: 0.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
    position: relative;
}

.modal__head {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

.modal__body {
    display: flex;
    flex-flow: column;
    gap: 0.5rem;
}

.modal__title {
    margin: 0;
    display: flex;
    font-size: 1.4rem;
    font-weight: 400;
    align-items: center;
}

.modal__message {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
}

.modal__close {
    cursor: pointer;
}

.modal__button {
    cursor: pointer;
}
