/* AGM Attendance Report Styling */

.page-title-action {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 15px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.page-title-action:hover {
    background: #005a87;
}

.agm-attendance-report {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 1rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  max-width: 100%;
  overflow-x: auto;
  margin: 2rem auto;
}

.agm-attendance-report h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  color: #333;
}

.agm-stats p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.status-indicator {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 30px;
  font-weight: bold;
  color: #fff;
  font-size: 0.95rem;
  margin-left: 0.5rem;
}

.status-indicator.low {
  background-color: #dc3545; /* red */
}

.status-indicator.medium {
  background-color: #ffc107; /* amber */
  color: #212529;
}

.status-indicator.high {
  background-color: #28a745; /* green */
}

.agm-attendance-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.agm-attendance-table thead {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

.agm-attendance-table th,
.agm-attendance-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.agm-attendance-table tbody tr:hover {
  background-color: #f1f3f5;
  transition: background-color 0.2s ease-in-out;
}
