#eeAdmin_Totals {
	font-size: 120%;
	font-weight: bold;
	text-align: center;
}

/* Apply styles to the table */
#eeAdministrator {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  table-layout: fixed; /* Set fixed table layout */
}

/* Apply styles to the table header */
#eeAdministrator thead th {
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  padding: 8px;
  white-space: nowrap; /* Prevent line wrapping in header */
  overflow: hidden; /* Hide overflow in header */
  text-overflow: ellipsis; /* Display ellipsis (...) for overflow */
}

/* Apply styles to the table body */
#eeAdministrator tbody td {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 75%;
  white-space: nowrap; /* Prevent line wrapping in cells */
  overflow: hidden; /* Hide overflow in cells */
  text-overflow: ellipsis; /* Display ellipsis (...) for overflow */
}

/* Apply alternate background color to table rows */
#eeAdministrator tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Apply hover effect to table rows */
#eeAdministrator tbody tr:hover {
  background-color: #e5e5e5;
}

/* Apply styles to the first column */
#eeAdministrator tbody td:first-child {
  font-weight: bold;
}

/* Apply styles to the last column */
#eeAdministrator tbody td:last-child {
  text-align: right;
}