.nominating-committee .committee-info {
  padding: 25px 0 50px;
}
.nominating-committee .committee-organization,
.nominating-committee .nominators-section,
.nominating-committee .contact-committee,
.nominating-committee .reports-section,
.nominating-committee .notices-agendas-minutes {
  padding: 50px 0;
}

.nominating-committee .header {
  font-weight: 700;
}

.nominating-committee .header::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../../images/star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 8px;
  flex-shrink: 0;
}
.nominating-committee .header::after {
  content: "";
  display: block;
  padding-block-start: 4px;
  padding-block-end: 14px;
  border-block-start: 4px solid #41b6e6;
  width: 24px;
  margin-top: 8px;
}

.nominating-committee section:nth-of-type(even) {
  background-color: #e1f3f8;
}

.nominating-committee .content-block div {
  padding-left: 40px;
  font-size: 18px;
}

.nominating-committee .intro-block {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.nominating-committee .intro-block div {
  padding-left: 0;
}

.nominating-committee .intro-block div {
  flex: 1;
}

@media (max-width: 1023px) {
  .nominating-committee .intro-block {
    flex-direction: column;
  }
}

/* Nominators Table Styles */
.nominating-committee .table-responsive {
  overflow-x: auto;
}

.nominating-committee .nominators-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  border: 1px solid rgba(171, 190, 209, 0.3);
}

.nominating-committee .nominators-table thead th {
  background-color: rgba(171, 190, 209, 0.3);
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(171, 190, 209, 0.3);
}

.nominating-committee .nominators-table tbody p {
  margin: 0 !important;
}

.nominating-committee .nominators-table tbody a:visited:hover {
  color: #800080;
  text-decoration: underline;
}

.nominating-committee .nominators-table tbody a:hover {
  text-decoration: underline;
}

.nominating-committee .nominators-table thead th:nth-child(1) {
  width: 50%;
}
.nominating-committee .nominators-table thead th:nth-child(2) {
  width: 50%;
}

.nominating-committee .nominators-table tbody td {
  padding: 12px;
  border: 1px solid rgba(171, 190, 209, 0.3);
}

.nominating-committee .nominators-table .committee-name {
  font-weight: 700;
}

.nominating-committee .nominators-table tbody tr:nth-child(even) {
  background: #f5f7fab2;
}

.nominating-committee .email-link {
  color: var(--primary-color) !important;
  text-decoration: none;
}

.nominating-committee .email-link:hover {
  text-decoration: underline;
}

.nominating-committee .link {
  display: inline-block;
  background: #0075bb;
  color: white;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  margin: 10px 0;
}

.nominating-committee .link:hover {
  background: #0067a3;
}

.nominating-committee .reports-section a:not(.link) {
  text-decoration: underline;
}

.nominating-committee .reports-section a:not(.link):hover {
  color: var(--text-color);
}

/* Notices Table Styles */
.notices-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  border: 1px solid rgba(171, 190, 209, 0.3);
}

.notices-table thead th {
  background-color: rgba(171, 190, 209, 0.3);
  padding: 12px;
  text-align: left;
  border: 1px solid rgba(171, 190, 209, 0.3);
}

.notices-table thead th:nth-child(1) {
  width: 20%;
} /* Date - 1/5 */
.notices-table thead th:nth-child(2) {
  width: 40%;
} /* Notice and Agenda - 2/5 */
.notices-table thead th:nth-child(3) {
  width: 40%;
} /* Approved Minutes - 2/5 */

.notices-table tbody td {
  padding: 12px;
  border: 1px solid rgba(171, 190, 209, 0.3);
}

.notices-table tbody tr:nth-child(even) {
  background: #f5f7fab2;
}
.notices-table tbody tr:nth-child(odd) {
  background: #fff;
}
.notices-table .file-links .file-link:visited {
  color: #800080;
}
.notices-table .file-links .file-link {
  color: var(--primary-color);
  text-decoration: none;
}
.notices-table .file-links .file-link:hover {
  text-decoration: underline;
}

.pagination {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.pagination button {
  padding: 8px 12px;
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 4px;
}

.pagination button:hover {
  background-color: #f1f1f1;
}

.pagination button.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: white;
}

.pagination-info {
  margin: 10px 0;
  text-align: center;
  color: #666;
}
