/* ==============================
   Result Page – Complete CSS
   (Navbar Removed)
   ============================== */

/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f4f6f8;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Header ---------- */
.header {
  background: #ffffff;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
  border-bottom: 4px solid #ff9933;
}

.header img {
  height: 90px;
}

/* ---------- Result Content ---------- */
.result-container {
  max-width: 1100px;
  margin: 30px auto;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.result-header {
  text-align: center;
  margin-bottom: 25px;
}

.result-header h2 {
  color: #0b3c5d;
}

.result-header p {
  color: #555;
}

/* ---------- Table ---------- */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

th {
  background: #0b3c5d;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
}

tr:hover {
  background: #f7f9fb;
}

/* ---------- Button ---------- */
.result-btn {
  padding: 7px 16px;
  background: #138808;
  color: #fff;
  border-radius: 5px;
  font-weight: 600;
}

.result-btn:hover {
  background: #ff9933;
  color: #000;
}

.no-data {
  padding: 20px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  background: linear-gradient(180deg, #06273d, #0b3c5d);
  color: #fff;
  padding: 35px 15px;
  margin-top: 40px;
}

/* Footer Main Title */
.footer-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  color: #ffddaa;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-col h4 {
  margin-bottom: 10px;
  color: #ffddaa;
}

.footer-col a {
  display: block;
  margin: 6px 0;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ff9933;
}

.footer-copy {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
