
a {
  font-family: Arial, Helvetica, sans-serif; /* Sans-serif font */
  font-weight: bold; /* Bold text */
  text-decoration: none; /* Optional: removes underline */
  color: #1e88e5; /* Optional: blue link color */
}

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

thead {
  background-color: #1e88e5;
  color: white;
}

th, td {
  padding: 10px 14px;
  text-align: left;
}

th {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  position: relative; /* for arrow positioning */
}

tbody tr:nth-child(even) {
  background-color: #f5f9ff;
}

tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

tbody tr:hover {
  background-color: #e3f2fd;
  transition: background-color 0.2s ease;
}

td, th {
  border-bottom: 1px solid #ddd;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* === Search Box Styling === */
#searchInput {
  padding: 8px 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 250px;
  font-size: 14px;
}

/* === Filter Dropdown Styling === */
.filter-row select {
  width: 100%;
  padding: 4px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* === Sort Arrows === */
th.asc::after {
  content: "▲";
  position: absolute;
  right: 8px;
  font-size: 0.7em;
}

th.desc::after {
  content: "▼";
  position: absolute;
  right: 8px;
  font-size: 0.7em;
}

.menu {
    background: #2c3e50;
    padding: 12px 20px;
    display: flex;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.menu a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: bold;
}
.menu a:hover { text-decoration: underline; }

