/* Modal */
.modal {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 60vw;
    width: 100%;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #333;
}

.modal-content p {
    margin-bottom: 20px;
    color: #666;
}

#user-form input, #final-user-form input {
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

#user-form button, #final-user-form button {
    margin-top: 10px;
    width: 80%;
    padding: 1rem 2rem;
    background-color: #333333;
    color: #f0f0f0;
    margin-bottom: 1rem;
}