/* Loading Page */
#loadingOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 9999;
  display: none;
  display: flex;               /* flex container */
  align-items: center;         /* vertical center */
  justify-content: center;     /* horizontal center */
}


/* ควบคุมขนาด img animation hospital */
.loading-img {
  width: 60%;        /* ปรับตามความกว้างจอ */
  max-width: 300px;  /* ไม่เกิน 300px บนจอใหญ่ */
  min-width: 180px;  /* ไม่เล็กเกินบนมือถือ */
  height: auto;
  margin-bottom: 16px;
}

#loadingOverlay img {
  margin-bottom: 16px; /* ระยะห่างรูปกับข้อความ */
}

#loadingOverlay h4 {
  margin: 0;
  font-weight: 500;
}



/* Custom Loading DataTable */
.custom-loader {
  display: flex;
  flex-direction: column; /* บังคับแนวตั้ง */
  align-items: center;
  justify-content: center;
  padding: 0px;
  font-weight: bold;
  color: #1d3f72;
}

.custom-loader img {
  margin-bottom: 10px;
}
