/* ==========================================
   SAMAKAN TAMPILAN TEXTBOX NAMA GURU DENGAN LAINNYA
   ========================================== */
input#nama_guru {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  transition: 0.3s ease;
  background-color: #fff;
  color: #333;
}

/* Efek fokus agar konsisten dengan input lain */
input#nama_guru:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

/* Placeholder */
input#nama_guru::placeholder {
  color: #999;
}

/* Label biar sejajar dan rapi */
label[for="nama_guru"],
label:has(+ #nama_guru) {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

/* ==========================================
   RESPONSIVE UNTUK SEMUA HP
   ========================================== */
@media (max-width: 600px) {
  input#nama_guru {
    font-size: 15px;
    padding: 12px;
  }
}
/* ==========================================
   STYLE KHUSUS UNTUK INPUT NAMA GURU + DATALIST
   ========================================== */
label[for="nama_guru"],
label:has(+ #nama_guru) {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

/* Input list sama ukuran dengan input lain */
input[list="guruList"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
  transition: 0.3s;
  background-color: #fff;
  color: #333;
}

/* Fokus efek */
input[list="guruList"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
  outline: none;
}

/* Placeholder */
input[list="guruList"]::placeholder {
  color: #999;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 600px) {
  input[list="guruList"] {
    font-size: 15px;
    padding: 12px;
  }
}
