* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
}

.container {
  max-width: 1080px;
  margin: auto;
  padding: 20px;
}

header {
  background: #002366;
  color: white;
  padding: 15px 0;
}

header h1 {
  text-align: center;
  font-size: 24px;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.job-heading {
  text-align: center;
  margin-bottom: 25px;
}

.job-heading h2 {
  font-size: 26px;
  color: #002366;
}

.job-heading .subtitle {
  font-size: 18px;
  margin-bottom: 8px;
  color: #666;
}

.adv-no {
  color: #c0392b;
  margin-bottom: 6px;
}

.tag {
  background: #e0f0ff;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  color: #00509e;
  margin-top: 6px;
}

.info-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.info-box .half {
  flex: 1;
  background: white;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 6px;
}

.info-box h3 {
  margin-bottom: 10px;
  color: #002366;
  font-size: 18px;
}

.info-box ul {
  list-style: disc;
  padding-left: 20px;
}

.details-section {
  background: white;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 20px;
}

.details-section h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #002366;
}

.details-section ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 15px;
}

.details-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.details-section table, th, td {
  border: 1px solid #ccc;
}

.details-section th, td {
  padding: 10px;
  text-align: left;
}

.note {
  margin-top: 12px;
  color: #d0005a;
  font-weight: bold;
}

.important-links {
  background: white;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 30px;
}

.important-links h3 {
  margin-bottom: 20px;
  color: #002366;
}

.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.link-btn {
  background: #002366;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  flex: 1 1 220px;
  text-align: center;
  transition: 0.3s;
}

.link-btn:hover {
  background: #00389d;
}

footer {
  background: #f1f1f1;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .info-box {
    flex-direction: column;
  }

  .link-grid {
    flex-direction: column;
  }

  .link-btn {
    flex: 1 1 100% !important;
    width: 100%;
  }
}

@media (max-width: 600px) {
  table {
    font-size: 14px;
  }
}


th, td {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}
    th {
      background-color: #f1f1f1;}

      .btn-table {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

.table-container {
  width: 100%;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px; /* Ensures columns don't shrink too much */
}

