.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.modal.modal--open {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.modal__content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    position: relative;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.modal__close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgb(185, 58, 58);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #555;
}

.modal__close-btn:hover {
    color: #000;
}

.modal__title {
    margin: 0 0 15px 0;
}

.modal__text {
    margin: 0;
}