

.modal {
 
    top: 50vh;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 80%;
    
    z-index: 1;
}

.modal-content {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: #fff;
    color: #000101;
    padding: 20px;
    border-radius: 5px;
    width: 95%;
    max-width: 400px;
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}

.form-group {
    
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, textarea {
    width: 95%;
    max-width: 95%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}














/* Styles pour le toast */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    font-family: "Arial", serif;
    font-size: calc(1rem + 2vw);
    text-align: center;
    transform: translateX(-50%);
    background-color: rgb(47, 141, 230);
    color: #ffffff;
    padding: 10px 20px;
    border-style:groove;
    border-radius: 5px;
    opacity: 1;
    z-index: 9999;
  }