.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: #faf8ef;
    border-radius: 24px;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    font-size: 28px;
    font-weight: bold;
    color: #776e65;
    min-width: 300px;
}

.modal-buttons {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.modal-btn {
    background: #8f7a66;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.modal-btn:hover {
    background: #9e8b77;
}
