 /* Modal background */
    .hm-modal-overlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 1000;
      justify-content: center;
      align-items: center;
      margin: 0px;
    }
#openModalBtn{
    background-color: white;
    border: none;
    border-radius: 5px;
    padding: 0px 5px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px;
}
#openModalBtn:hover{
    transform: scale(1.04);
}
    /* Modal box */
    .hm-modal {
      background: #ffffff;
      padding: 25px;
      border-radius: 5px;
      width: 420px;
      max-width: 95%;
      box-shadow: 0 6px 25px rgba(0,0,0,0.25);
      animation: fadeIn 0.3s ease;
      /* font-family: Arial, sans-serif; */
    }
.navend{
    display: flex;

}
    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.9); }
      to { opacity: 1; transform: scale(1); }
    }

    /* Close button */
    .hm-close-btn {
      float: right;
      font-size: 20px;
      cursor: pointer;
      border: none;
      background: none;
    }

    .hm-modal h2 {
      margin: 0 0 15px;
      font-size: 20px;
      color: #333;
    }

    .hm-modal form {
      display: flex;
      flex-direction: column;
    }

    .hm-modal label {
      margin-top: 20px;
      font-weight: bold;
      font-size: 14px;
    }

    .hm-modal input, 
    .hm-modal textarea {
      padding:5px 20px;
      margin-top: 5px;
      width: 90%;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
      color: black;
    }

    .hm-modal textarea {
      resize: vertical;
    }

    .hm-modal button[type="submit"] {
      margin-top: 18px;
      padding: 12px;
      background: #28a745;
      color: white;
      border: none;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
    }

    .hm-modal button[type="submit"]:hover {
      background: #218838;
    }