
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.modal-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: #444;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: left;
}

.modal-message {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #444;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;
}

.modal-input {
    padding: 10px 10px;
    border-radius: 5px;
    font-size: 16px;
    width: 70%;
  }


  .modal-input-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .modal-label {
    flex: 1;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #444;
    text-align: left;
    margin-right: 10px;
  }

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 480px) {
    .modal-content {
        width: 95%;
    }
}