/* Font asas & reset */
* {
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f4f6f9;
  padding: 20px;
  font-size: 15px;
}

.container {
  max-width: 750px;
  margin: 32px auto;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

/* Tajuk */
h1 {
  font-size: 28px;
  text-align: center;
  color: #222;
  margin-bottom: 0;
}

h3 {
  font-size: 16px;
  text-align: center;
  color: #555;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Label & input */
label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
  font-size: 15px;
}

select {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 14px;
}

/* Butang */
button {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 8px;
}

button:not(.reset-btn):not(.btn-lihat) {
  background-color: #3459e6;
  color: white;
  border: none;
  margin-top: 6px;
}

button:not(.reset-btn):not(.btn-lihat):hover {
  background-color: #2c4bcc;
}

.reset-btn {
  background-color: #999;
  color: white;
  border: none;
}

.reset-btn:hover {
  background-color: #777;
}

/* Pemisah ATAU */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 24px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.divider:not(:empty)::before {
  margin-right: .75em;
}

.divider:not(:empty)::after {
  margin-left: .75em;
}

.divider span {
  font-weight: 500;
  color: #444;
  font-size: 15px;
}

/* Output */
#result,
#senaraiSekolah,
#maklumatSekolah {
  margin-top: 20px;
  font-size: 15px;
}

/* Senarai sekolah */
.result-row,
.senarai-item {
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
  font-size: 15px;
}

.nama-sekolah {
  color: #2b59c3;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
  word-break: break-word;
  white-space: normal;
  display: block;
  transition: color 0.2s ease;
  cursor: pointer;
}

.nama-sekolah:hover {
  color: #1c3f8f;
  text-decoration: underline;
}

/* Jadual maklumat */
.jadual-keputusan {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 15px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.jadual-keputusan th {
  background-color: #f0f4ff;
  color: #2b59c3;
  text-align: left;
  padding: 12px 16px;
  width: 180px;
  vertical-align: top;
  font-weight: 600;
  border-bottom: 1px solid #e0e0e0;
}

.jadual-keputusan td {
  padding: 12px 16px;
  border-bottom: 1px solid #f2f2f2;
  color: #333;
  font-size: 15px;
}

/* Butang kecil (optional) */
.btn-lihat {
  background-color: #2b59c3;
  color: white;
  padding: 6px 12px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
  width: auto;
}

.btn-lihat:hover {
  background-color: #1c3f8f;
}

/* Butang Kembali ke Atas */
#btnTop {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: none;
  background-color: #2b59c3;
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
  z-index: 999;
}

#btnTop:hover {
  background-color: #1c3f8f;
}
