/* Royal green theme for KCSE Table */

#kcseTable {
  width: 100%;
  border-collapse: collapse;
  font-family: inherit;
  color: #225522; /* dark royal green text */
  background-color: #f0f6f0; /* very light greenish background */
  border: 1px solid #2a5d2a; /* royal green border */
}

#kcseTable caption {
  font-weight: 600;
  font-size: 1.3rem;
  color: #1a4d1a;
  padding-bottom: 10px;
}

#kcseTable th,
#kcseTable td {
  border: 1px solid #2a5d2a;
  padding: 8px 12px;
  text-align: center;
}

#kcseTable thead {
  background-color: #2a5d2a; /* royal green header */
  color: #e6f4e6; /* light text */
  font-weight: 600;
}

#kcseTable tbody tr:nth-child(even) {
  background-color: #d7ecd7; /* soft light green rows */
}

#kcseTable tbody tr:hover {
  background-color: #a5d5a5; /* brighter hover highlight */
  color: #113311;
}

#kcseTable tbody td strong {
  color: #113311;
}
