@charset "UTF-8";

/* ระยะห่าง Card Type ในหน้า promotion */
#headCardType {margin-top:80px;}


/* บอกเบราว์เซอร์ว่าต้องการโทนสว่าง ไม่ต้องปรับสีให้เอง */
:root {
  color-scheme: light;
}

/* บังคับช่อง input / select / textarea ให้เป็นสีขาว */
input, select, textarea {
  background-color: #ffffff !important;
  color: #000 !important;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
}

/* กันไม่ให้ Dark Mode ปรับ placeholder */
::placeholder {
  color: #888;
  opacity: 1;
}

/* Autofill ของ Chrome ที่ชอบเป็นสีเทา/เหลือง */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

/* Safari บน iPhone ชอบใส่สีเทากับ select */
select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #ffffff !important;
}