
    /* Modal styles */
    .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.7);
    }
  
    .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 80%;
    }
  
    .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    }
  
    .close:hover,
    .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
    }
  
    /* Form styles */
    form {
    display: grid;
    gap: 10px;
    }
  
    label {
    font-weight: bold;
    }
  
    input[type="text"],
    input[type="email"],
    textarea {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    }
  
    button {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    }
  
    button:hover {
    background-color: #ff3333;
    }
  
    .red {
    background-color: #ff4d4d;
    color: white;
    }
  
    .red:hover {
    background-color: #ff3333;
    }
