@charset "utf-8";
/* CSS Document */
.nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 130px); /* fixed width */
  grid-auto-rows: 30px;                   /* fixed height */
  gap: 20px;                              /* 20px spacing */
  justify-content: center;                /* center grid horizontally */
  align-content: center;                  /* center vertically (if height allows) */
  background: #EEFFCC;
  padding: 10px;
}

.nav-grid a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 30px;
  color: white;
  text-decoration: none;
  background: #444;
  border-radius: 8px;
  transition: 0.3s;
}

.nav-grid a:hover {
  background: #666;
}
@media (max-width: 600px) {
  .nav-grid {
    grid-template-columns: repeat(2, 130px);
  }
}
.nav-grid a.active {
  background: #007bff;
}

/* table 3 */
.table3 {
	border-collapse: collapse;
	color: #000000;
}
.table3 td {
    font-size: 13px;
	text-align: left;
	vertical-align: middle;
    padding: 3px 7px 2px 7px;
	padding: 0;
}
.table3 th {
    font-size: 14px;
    text-align: centre;
    padding: 3px 7px 2px 7px;
    background-color: #FF6;
    color: #000000;
}

.clickable-cell {
  display: block; /* Makes the anchor a block element */
  width: 100%;
  height: 100%;
  padding: 15px; /* Add padding to the link instead of the td */
  text-decoration: none; /* Removes underline */
  color: inherit; /* Keeps text color same as table */
}

.clickable-cell:hover {
  background-color: blue; /* Sets hover highlight color */
  color: white; /* Optional: change text color for better contrast */
  cursor: pointer; /* Ensures pointer cursor appears */
}


