.months a {
  margin: 0 5px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 4px;
  transition: background 0.2s;
}
.months a:hover {
  background: #e6f0ff;
}
.months a.active {
  background: #007bff;
  color: #fff;
}

/* ✅ Fix table width & alignment */
#reportTable {
  margin: 10px 0;
  width: auto;
  border-collapse: collapse;
}

.table-responsive {
  max-width: fit-content;
  margin-left: 20px;
  margin-bottom: 80px;
  overflow-x: auto;
}

#reportTable th,
#reportTable td {
  border: 1px solid #ccc;
  padding: 6px 10px;
  white-space: nowrap;
  text-align: center;
}

th {
  background: #f2f2f2;
  cursor: pointer;
  user-select: none;
}
th.sort-asc::after {
  content: " ▲";
}
th.sort-desc::after {
  content: " ▼";
}
