/* Export Buttons Section */
.export-buttons-container {
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

#export-pdf-button, #export-csv-button {
  background-color: #555;
  color: white;
  border: none;
  padding: 8px 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}

/* Filter Form Section */
.filter-bar-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.filter-input {
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 180px;
  height: 100%;
  min-height: 41px;
}

.filter-label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

#view-button {
  background-color: #00548E !important;
  color: white;
  border: none;
  padding: 13px 20px;
  margin-top: 30px;
  border-radius: 4px;
  cursor: pointer;
}

/* Table Section */
.custom-data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.custom-data-table thead {
  background-color: #00548E;
  color: white;
}

.custom-data-table th, .custom-data-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
}

.custom-data-table tbody tr:nth-child(even) {
  background-color: #f1f1f1;
}

.custom-data-table tbody tr:hover {
  background-color: #e9ecef;
}

#session-id-header, #session-date-header, #course-name-header, #instructor-header, #location-header {
  font-size: 16px;
}

#session-id-cell, #session-date-cell, #course-name-cell, #instructor-cell, #location-cell {
  font-size: 14px;
}

/* No Data Message */
#no-data-message {
  text-align: center;
  font-size: 18px;
  color: #999;
}
/* Style all links inside the table */
.custom-data-table a {
  color: #00548E; /* Default color */
  text-decoration: none; /* Remove underline */
}

.custom-data-table a:hover {
  color: #337ab7; /* Hover color */
}

/* training-days-report */
.results-summary {
  width: 60%;
  margin: 0 auto;
  text-align: center;
}
.results-summary th, .results-summary td {
  padding: 8px;
}
div#radio-button label {
  padding: 17px;
}
.form-control {
  width: 100%;
  height: 100%;
  min-height: 43px;
}
