/* Общие стили */
body {
    font-family: Arial, sans-serif;
    padding: 20px;
}

/* Кнопки */
button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
}

/* Модальные окна */
.modal {
    display: none; /* по умолчанию скрыты */
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex; /* показываем при добавлении класса */
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    max-width: 80%;
    position: relative;
}

.close {
    position: absolute; top: 10px; right: 15px;
    font-size: 20px; cursor: pointer;
}