/* Style for the overlay */
.overlay {
    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;
}

/* Style for the modal */
.modal {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
.text-plain, label{
    color: black;
    font-size: 12px;
    font-style: italic;
}

/* Style for the buttons */
.modal button {
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
}