/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
  }
  
  /* Modal Content */
  .modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Close Button */
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Form Inputs */
  #reviewForm label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
  }
  
  #reviewForm input[type="text"],
  #reviewForm input[type="email"],
  #reviewForm textarea {
    width: 91%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  #reviewForm textarea {
    resize: vertical; /* Allow vertical resizing */
    min-height: 100px;
  }
  
  /* Submit Button */
  #reviewForm button[type="submit"] {
    background-color: #000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #reviewForm button[type="submit"]:hover {
    background-color: #5f6368; /* Darker shade of navy blue */
  }
  
  /* Centering Modal Content */
  @media screen and (max-width: 600px) {
    .modal-content {
      width: 90%;
    }
  }
  
