  #submitButton:hover {
      background-color: #28a745;
      /* สีเขียว */
      border-color: #28a745;
      /* สีเขียว */
  }

  /* เพิ่ม CSS สำหรับการแสดงช่องที่ไม่ได้กรอกข้อมูล */
  .invalid {
      border-color: red;
  }

  .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      display: none;
      /* ซ่อน modal เมื่อเริ่มต้น */
      justify-content: center;
      align-items: center;
      z-index: 1000;
  }

  .modal-content {
      background-color: white;
      padding: 20px;
      border-radius: 5px;
      max-width: 400px;
      width: 100%;
      text-align: center;
  }

  .btn {
      padding: 10px 20px;
      background-color: #007bff;
      border: none;
      color: white;
      cursor: pointer;
  }

  .custom-heading {
      font-size: 2.0rem;
  }

  .responsive-dropdown {
      min-width: 50vw;
      /* ปรับขนาดตามหน้าจอ */
      max-width: 90vw;
      /* ไม่ให้ใหญ่เกินไป */
      width: auto;
      /* ปรับขนาดอัตโนมัติ */
  }

  /* ปรับขนาดให้เหมาะสมในหน้าจอขนาดเล็ก */
  @media (max-width: 768px) {
      .responsive-dropdown {
          min-width: 80vw;
          /* ให้เต็มหน้าจอมากขึ้น */
          padding: 10px;
      }
  }


  .readonly-yellow {
      background-color: #fff9c4 !important;
  }


 .unavailable {
      color: red;
      font-weight: bold;
  }

