  body {
    background-color: #f4f6f9;
  }

  .center {
    text-align: center;
    /* จัดให้ภาพอยู่ตรงกลาง */
  }

  .content-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .content-container {
    max-width: 1200px;
    /* ตั้งค่าขนาดสูงสุดของ container */
    margin: 0 auto;
    /* ทำให้ container อยู่กึ่งกลาง */
  }

  p {
    font-size: 18px;
    line-height: 1.7;

    color: #333;
    margin-bottom: 10px;
  }

  .container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    border-radius: 6px;
    padding: 25px;
    padding-bottom: 25px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'Prompt', sans-serif !important;
    background-color: #fff;
    box-shadow: 0 1px 10px rgba(1, 1, 1, 1.1);
    /* opacity: 0.9; */

  }

  .container header {
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: #333;
  }

  .container header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 5px;
    width: 100%;
    border-radius: 8px;
    background-color: #4070f4;
  }

  .container .btnText {
    font-size: 14px;
    font-weight: 400;
  }

  /* กรอบยกลอย */
  .reset {
    all: revert;
    border-radius: 5px;
    max-width: 1100px;
    border: 1.5px solid #2f5748;
    /* เปลี่ยนสีเส้นขอบเป็นสีที่ต้องการ */
    display: flex;
    align-items: center;
    /* จัดตำแหน่งกลางแนวตั้ง */
    padding: 10px;
    /* เพิ่ม padding รอบๆ */
    color: #2f5748;
  }

  .reset h5 {
    margin: 0;
    /* ลบ margin ด้านบนของ h5 */
  }
  .reset   label
 {
    margin: 10;
    font-size: 16px;
  }

  hr {
    border: none;
    height: 1px;
    background-color: #2f5748;
    border-radius: 1px;
    margin-top: 0;
    /* ปรับระยะห่างจากส่วนบน */
  }

  .red {
    color: red;
    font-size: 16px;
  }

  .schedule {
    padding: 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .schedule  h4 {
    color: #2f5748;
    margin-top: 10px;
    margin-bottom: 10px;
    /* border-left: 5px solid #2f5748; */
    /* เส้นสีที่เน้นหัวข้อ */
    padding-left: 10px;
  }

  h4 {
    color: #2f5748;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .text-register {
    color: #ff8f00 !important
  }

  .topic {
    font-size: 30px;
    color: #333;
    margin-bottom: 2px;
    border-left: 5px solid #2f5748;
      /* เส้นสีที่เน้นหัวข้อ */
    padding-left: 10px;
    color: #2f5748;
  }

  .info-icon {
      font-size: 1.5rem;
      color: #28a745; /* ใช้สีเขียว (Success) สำหรับไอคอนความสำเร็จ/การตรวจสอบ */
      margin-right: 5px;
      padding-top: 4px; /* ปรับให้ตรงกับบรรทัดแรก */
      min-width: 30px; /* กำหนดความกว้างเพื่อจัดให้ตรงกัน */
      text-align: center;
  }


  .ui-autocomplete {
    font-family: 'Kanit', sans-serif !important; 
    font-size: 16px !important; /* อาจปรับขนาดให้ใหญ่ขึ้นเพื่อให้ดูชัดเจนเท่า Input */
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ced4da;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000 !important; /* ตรวจสอบให้แน่ใจว่ามันซ้อนทับองค์ประกอบอื่น */
  }

  /* สไตล์ของแต่ละรายการใน Dropdown */
  .ui-menu-item .ui-menu-item-wrapper {
      padding: 5px 10px;
      cursor: pointer;
      color: #333; 
  }