/* Modal style */
.modal {
    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;
  }
  .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 80%;
    max-width: 400px;
    color: #333; /* Dark text color */
  }
  .modal-button {
    background-color: #ffcc00;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    color: black;
    cursor: pointer;
  }
  .modal-button:hover {
    background-color: #e6b800;
  }
  