:host {
  --primary: #BE1E2D;
  --secondary: #1D437F;
  --altRowColor: #f5f5f5;
  --hyperLinkOnGrey: #0168C2;
}

/* General styles */
*:not(p) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: effra, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 10px 0;
}

h1 {
  color: #BE1E2D;
  text-align: center;
  font-size: 2rem;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
}

h2, h3, h4 {
  color: #1D437F;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
}

a {
  color: #0171d3;
}

a.aongrey {
  color: #0168C2;
}

a[id]:not([href]) {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 8px 20px;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: white;
  background-color: #BE1E2D;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  height: 40px;
  vertical-align: top;
  font-size: 16px;
  letter-spacing: normal;
  min-width: 150px;
}

.btn:hover {
  background-color: #7a0000;
  text-decoration: none;
}

.title {
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
}

label, .ebold {
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.tableHeader {
  text-align: center;
  font-size: 20px;
  padding: 5px;
  color: #fff;
  background: #1D437F;
}

.tableTitle {
  font-family: bree-serif, serif;
  font-weight: 400;
  font-style: normal;
}

.circular-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background: #fff;
  position: relative;
  z-index: 1;
}

.leader-photo, .staff-photo {
  flex: 0 0 110px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}

.leader-photo::before, .staff-photo:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 126px;
  height: 126px;
  border-radius: 50%;
  z-index: 0;
}

.leader-photo::before {
  background: linear-gradient(135deg, #003366 0%, #980000 100%);
}

.staff-photo::before {
  background: #fff;
}

body {
  margin: 0;
}

/* Header styles */
.navHeader {
  background-color: #1D437F;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  /*border-bottom: 2px solid vars.$primary;*/
}

header {
  background-color: #1D437F;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
  /*border-bottom: 2px solid vars.$primary;*/
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

.pageContent {
  min-height: 70vh;
}

section {
  padding-top: 20px;
  padding-bottom: 20px;
}

fieldset {
  border: none;
}

/* Hide visually-hidden text for screen readers only */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.oneColumn {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.two-column {
  max-width: 1200px;
  margin: 0 auto 10px auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  position: relative;
}

.column {
  flex: 1;
  position: relative;
}

main h1 {
  color: #BE1E2D;
}

.pageContent {
  margin-bottom: 20px;
}

.hero {
  padding-top: 0px;
  padding-bottom: 0px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 70%);
  display: flex;
  justify-content: center;
  background-color: #1D437F;
  max-width: 100vw;
  overflow: hidden;
}

.hero img {
  height: 150px;
  max-width: 1600px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}

ul.noBulletDisplay li {
  list-style: none;
}

.greyCard {
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px;
  padding: 10px;
  display: inline-block;
}

.greyCard a:not(.btn) {
  color: #0168C2;
}

.greyCard .button-container {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 20px;
}

@media (min-width: 1600px) {
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(to right, #1D437F 20%, transparent 25%, transparent 75%, #1D437F 80%);
  }
}
@media (min-width: 1300px) {
  #main-wrapper,
  main,
  .staff-section {
    margin: 0 auto;
    box-shadow: none;
  }
  /* Only set background: #fff for sections that should always be white */
  header,
  .content-section,
  .senate-action,
  .calendars,
  footer {
    /* max-width: 1300px; */
    margin-left: auto;
    margin-right: auto;
  }
  /* Do NOT set background for .plan-visit-section or .leadership-message here */
}
@media (max-width: 1024px) {
  section {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 1024px) {
  .two-column {
    flex-direction: column;
    align-items: stretch;
  }
  .leader-photo {
    margin-bottom: 10px;
  }
}
@media (max-width: 900px) {
  .leader-photo {
    margin-bottom: 10px;
  }
  .leader-photo::before {
    width: 116px;
    height: 116px;
  }
}
@media (max-width: 600px) {
  /* Prevent any element from exceeding viewport width */
  * {
    box-sizing: border-box !important;
  }
  body {
    overflow-x: hidden;
  }
  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  .header-container {
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
  main {
    padding: 0 10px 20px 10px;
  }
}
@media (max-width: 400px) {
  main {
    padding: 0 10px;
  }
}
.content-section {
  padding-top: 30px;
}

/* Committee List */
.committees-main {
  background: linear-gradient(to bottom left, #9fccff 0%, #ffffff 20%);
  min-height: 100vh;
}

.committees-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px 40px 20px;
}

/* Header Section */
.committees-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.committees-header .subtitle {
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #1D437F;
  margin-top: -8px;
}

.committees-header-spacer {
  min-width: 220px;
}

/* Session Selector */
.session-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 220px;
}

.session-selector label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 6px;
}

.session-selector select {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  min-width: 180px;
  background-color: white;
  cursor: pointer;
}

.session-selector select:hover {
  border-color: #003366;
}

/* Committee Card Styles */
.committee-card {
  background: #ebecf0;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.committee-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.12);
}

.committees-grid a {
  text-decoration: none;
}

.committeeGroupContents {
  margin-left: 8px;
}

.committee-card strong {
  font-family: bree, sans-serif;
  font-weight: 700;
  color: #003366;
  font-size: 1.1rem;
}

.committee-meta {
  font-family: effra, sans-serif;
  font-size: 0.9rem;
  color: #000000;
  margin-top: 4px;
}

/* Committees Grid */
.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px 24px;
  margin-top: 18px;
  margin-bottom: 36px;
}

/* Committee detail page */
.comm-info-card {
  margin-left: auto;
}

.committee-details-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 40px 20px;
  gap: 36px;
}

.committee-details-left {
  min-width: 0;
}

.committee-title-block {
  display: flex;
  flex: 2;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.committee-title {
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0;
  line-height: 1.1;
  text-align: left;
}

.committee-chair-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  flex-direction: column;
}

.chair-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chair-name {
  font-family: bree, sans-serif;
  font-size: 1.1rem;
  color: #003366;
  font-weight: 700;
}

.chair-title {
  font-family: effra, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

.committee-description {
  margin: 18px 0 0 0;
  font-size: 1.08rem;
}

.committee-contact-note {
  margin-top: 8px;
  font-size: 0.98rem;
}

.committee-details-right.comm-info-card {
  background: #f8f9fb;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 28px 24px 24px 24px;
  min-width: 320px;
  max-width: 350px;
  margin-top: 0;
  margin-bottom: 0;
}

.committee-details-right h4 {
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 8px;
  margin-top: 18px;
}

.committee-details-right h4:first-child {
  margin-top: 0;
}

.committee-members-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.member-link {
  color: #1976d2;
  font-weight: 700;
  text-decoration: underline;
}

.clerk-link,
.clerk-phone {
  color: #1976d2;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1rem;
}

.related-links-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.related-links-list a {
  text-decoration: underline;
  font-size: 1rem;
}

.committee-standing-block {
  margin-top: 18px;
  font-size: 1rem;
  color: #333;
}

.committee-links-block {
  margin-top: 18px;
}

@media (max-width: 1023px) {
  .committee-details-right.comm-info-card {
    display: flex;
    flex-direction: row;
    gap: 30px;
    max-width: 100%;
  }
  .committee-links-block, .committee-standing-block {
    margin-top: 0;
  }
  .comm-info-card {
    margin-left: 0;
  }
}
@media (max-width: 900px) {
  .committees-section {
    padding-top: 0;
  }
  .two-column.committee-details-main {
    flex-direction: column;
    gap: 24px;
    padding: 0 6vw 24px 6vw;
  }
  .committee-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-top: 10px;
  }
  .committee-details-right.comm-info-card {
    max-width: 100%;
    min-width: 0;
    margin-top: 24px;
    padding: 20px 12px 18px 12px;
  }
  .committee-title {
    font-size: 2rem;
    white-space: normal;
    margin-top: 30px;
  }
  .meetings-table-wrapper {
    overflow-x: auto;
  }
  .meetings-table {
    min-width: 600px;
    font-size: 0.98rem;
  }
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .content-section {
    padding-top: 0;
  }
  .committees-header-spacer {
    display: none;
  }
  .committees-grid {
    grid-template-columns: 1fr;
  }
  .committees-header {
    flex-direction: column;
    align-items: center;
  }
  .session-selector {
    align-items: flex-start;
    width: 100%;
  }
  .session-selector select {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .committee-details-right.comm-info-card {
    flex-direction: column;
  }
  .two-column.committee-details-main {
    padding: 0 2vw 12px 2vw;
    gap: 16px;
  }
  .committee-details-right.comm-info-card {
    width: 100%;
  }
}
/* SECTION LAYOUTS */
.staff-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 0 20px;
}

.staff-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.staff-row > .staff-col:first-child {
  flex: 1 1 0;
  min-width: 0;
}

.staff-row > .staff-col:last-child {
  flex: 0 0 auto;
  margin: auto;
  max-width: 370px;
}

.staff-rowReverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  align-items: flex-start;
}

.staff-rowReverse > .staff-col:first-child {
  flex: 1 1 0;
  margin-left: auto;
}

.staff-rowReverse > .staff-col:last-child {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 370px;
}

.staff-col {
  flex: 1 1 0;
  min-width: 0;
}

.staff-col-card-left {
  order: 1;
}

.staff-col-main {
  order: 0;
}

.staff-col-main-right {
  order: 2;
}

.staff-title {
  font-family: bree, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  margin-top: 0;
}

.staff-title-red {
  color: #980000;
}

.staff-body {
  font-size: 1rem;
  color: #333;
}

.staff-body p {
  margin-bottom: 14px;
}

/* CONTACT CARDS */
.staff-contact-card {
  background: #003366;
  color: #fff;
  border-radius: 12px;
  box-shadow: -6px 5px 11px 3px rgba(0, 0, 0, 0.5);
  padding: 40px 18px 44px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-width: 370px;
  margin-top: 50px;
}

.staff-contact-card-header {
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
}

.staff-contact-card-address {
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 12px;
}

.staff-contact-card-address-room {
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.staff-contact-card-people {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  padding-left: 20px;
}

.staff-contact-person {
  display: flex;
  align-items: center;
  gap: 30px;
}

.staff-contact-person-details {
  flex: 1;
}

.staff-contact-person-name {
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  font-size: 1.05rem;
}

.staff-contact-person-role {
  font-size: 0.98rem;
  margin-bottom: 2px;
  font-family: effra, sans-serif;
  font-weight: 400;
  font-style: italic;
}

.staff-contact-person-contact {
  font-size: 0.95rem;
  color: #fff;
}

.staff-contact-person-contact a:first-child {
  color: #fff;
  text-decoration: none;
}

.staff-contact-person-contact a:nth-child(2) {
  color: #61b4fc;
  text-decoration: none;
}

.staff-contact-person-contact a:hover {
  text-decoration: underline;
}

.staff-contact-person-contact a:nth-child(2) {
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
}

@media (min-width: 1024px) {
  .staff-greyBackground {
    background-color: #EBEBEA;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 90%);
    padding: 50px 20px 70px 20px;
  }
}
@media (min-width: 1024px) {
  .staff-col-text {
    padding-top: 30px;
  }
}
/* Responsive Styles */
@media (max-width: 1024px) {
  .staff-col-card,
  .staff-col-card-left {
    max-width: 100%;
    width: 100%;
    order: 1 !important;
  }
  .staff-col-main,
  .staff-col-main-right {
    order: 2 !important;
  }
  .staff-contact-card {
    margin-top: 0;
  }
}
@media (max-width: 700px) {
  .staff-row, .staff-rowReverse {
    flex-direction: column;
    gap: 24px;
  }
  .staff-contact-card {
    padding: 12px 4px 25px 4px;
  }
  .staff-contact-person-name {
    font-size: 0.98rem;
  }
  .staff-contact-person-role {
    font-size: 0.92rem;
  }
  .staff-contact-person-contact {
    font-size: 0.9rem;
  }
}
.employmentGroup {
  padding: 10px 0;
}

ul.jobList {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.jobList li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
ul.jobList li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: black;
  font-size: 20px;
  font-weight: bold;
}
ul.jobList li a {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.disclaimer {
  margin-top: 50px;
}

gov-appointments {
  max-width: 800px;
  margin: 0 auto;
  display: block;
}

.boardContent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}
.boardContent > div {
  padding: 16px;
  text-align: center;
}
.boardContent > div:nth-child(even) {
  background-color: #f5f5f5;
}
.boardContent > div:nth-child(odd) {
  background-color: #fff;
}
.boardContent > .header {
  color: #fff;
  font-weight: bold;
}

.senate-action-card {
  background: #003366;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.senate-action-card h2 {
  color: #fff;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.5px;
}

.action-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
}

.action-column {
  flex: 1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.action-column:last-child {
  border-right: none;
}

.action-column h3,
.action-column {
  color: #fff;
}

.action-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: space-between;
  flex: 1 1 0;
}

.action-items-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.video-container {
  position: relative;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.video-placeholder {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #000;
  overflow: hidden;
}

.video-placeholder img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(152, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.play-button:hover {
  background-color: #980000;
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 5px;
}

.calendars {
  background-color: #f5f5f5;
  padding-top: 100px;
  padding-bottom: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  clip-path: polygon(0% 10%, 100% 0%, 100% 100%, 0% 100%);
}

.calendar-widget {
  flex: 1.5;
}

.calendar-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.scheduled-events {
  flex: 0.75;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#learnMoreButton {
  position: absolute;
  z-index: 75;
  top: -200px;
  left: -200px;
}

#learnMorePlaceholder {
  text-align: center;
}

.hBold {
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Leadership message section - remove white border from photo, match heading style */
.leadership-message {
  /* max-width: 1300px; */
  margin: 0 auto 0 auto;
  position: relative;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #fff 0%, #ddedff 30%, #a1cdff 100%);
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.message-container {
  display: flex;
  gap: 30px;
  align-items: center;
  background: none;
  border-radius: 0;
  box-shadow: none;
}

.message-content {
  flex: 1;
  background: none;
  box-shadow: none;
  padding: 0;
}

.message-content p {
  margin-bottom: 15px;
  color: #222;
  font-size: 1.1rem;
}

.signature {
  margin-top: 20px;
  font-family: bree, sans-serif;
  color: #980000;
  font-size: 1.1rem;
}

.senate-tv, .find-senator {
  position: relative;
  min-height: 340px;
}

.senate-tv .button-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.find-senator p {
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #444;
  text-align: center;
}

.find-senator .button-container {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

/* Plan Visit Section with Dome Background */
.plan-visit-section {
  position: relative;
  background: url("/images/Inside Dome - Blue Overlay.jpg") center center/cover no-repeat;
  min-height: 420px;
  padding: 60px 0;
  min-height: 500px;
}

.plan-visit {
  max-width: 500px;
  padding: 10px 40px 30px 40px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.plan-visit-more {
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.plan-visit p {
  margin-bottom: 15px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  #learnMorePlaceholder {
    visibility: hidden;
  }
  .action-column {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
  .message-container {
    margin: 0 100px;
  }
}
@media (max-width: 1023px) {
  .calendar-widget {
    max-width: 100%;
  }
  #learnMoreButton {
    display: none;
  }
  #learnMorePlaceholder {
    visibility: visible;
    margin-top: 30px;
  }
  .message-container,
  .action-columns {
    flex-direction: column;
    align-items: stretch;
  }
  .message-container {
    flex-direction: column;
    gap: 18px;
    padding: 0 0 24px 0;
    text-align: center;
    max-width: 98vw;
  }
  .message-container {
    flex-direction: column;
    gap: 18px;
    padding: 20px 10px 30px 10px;
    text-align: center;
  }
  .senate-tv .button-container {
    bottom: unset;
  }
}
@media (min-width: 900px) {
  .plan-visit {
    margin-left: 14%;
  }
}
@media (max-width: 900px) {
  .plan-visit {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .calendar-container {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .plan-visit-section {
    padding: 30px 0;
    min-height: 0;
  }
  .plan-visit {
    padding: 20px;
  }
  .senate-action, .content-section, .plan-visit {
    max-width: 100vw;
    box-sizing: border-box;
  }
  .leadership-message {
    padding-left: 5px;
    padding-right: 5px;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .calendars {
    padding-top: 50px;
    clip-path: polygon(0% 3%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media (max-width: 400px) {
  .find-senator .button-container {
    gap: 5px;
  }
}
.leadership-group {
  margin-bottom: 48px;
}

.leadership-group h2 {
  color: #003366;
  font-size: 1.7rem;
  margin-bottom: 24px;
  text-align: left;
}

.leadership-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
  margin-bottom: 24px;
}

.leadership-card {
  background: #f5f5f5;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 18px 20px;
  min-height: 120px;
  transition: box-shadow 0.2s;
  position: relative;
}

.leadership-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.leadership-title {
  color: #980000;
  font-size: 2.5rem;
  font-family: bree, sans-serif;
  font-weight: 700;
  margin-bottom: 32px;
  margin-top: 0;
}

.leader-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-left: 30px;
}

.leader-name a {
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  color: #1D437F;
  line-height: 1.3;
  text-decoration: none;
}

.leader-role {
  font-size: 1.01rem;
  color: #373637;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.leader-district {
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 0.95rem;
  color: #525252;
  letter-spacing: 0.02em;
  font-family: effra, sans-serif;
  font-weight: 500;
  font-style: italic;
}

/*.empty-photo .circular-photo {
    background: #e6eaf0 url("imgs/user-icon.svg") center/40% no-repeat;
    border: 3px solid #bfc9d9;
}*/
.district {
  color: #666;
  font-size: 1rem;
}

@media (max-width: 1024px) {
  .action-columns {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .senate-action-card {
    padding: 30px 8px 30px 8px;
    max-width: 98vw;
  }
}
@media (min-width: 701px) {
  .info-card {
    display: block !important;
  }
}
@media (max-width: 900px) {
  .leadership-section {
    padding: 0 8px 40px 8px;
  }
  .leadership-title {
    font-size: 2rem;
  }
  .leadership-group h2 {
    font-size: 1.2rem;
  }
  .leadership-cards {
    gap: 18px 12px;
  }
  .leadership-card {
    padding: 14px 10px;
  }
  .leader-district {
    top: 10px;
    right: 12px;
    font-size: 0.9rem;
  }
}
@media (max-width: 600px) {
  .leadership-main {
    padding: 18px 0 0 0;
  }
  .leadership-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .leadership-group h2 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .leadership-cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .leadership-card {
    flex-direction: row;
    min-height: 80px;
    padding: 10px 6px;
  }
  .leader-district {
    top: 7px;
    right: 10px;
    font-size: 0.85rem;
  }
}
/* Senators Page Custom Styles */
.senators-list-section {
  min-height: 500px;
}

.calendar-grid {
  display: grid;
  gap: 32px;
  margin: 0;
}

.agenda-flex-rows {
  display: flex;
  flex-direction: row;
}

.agenda-flex-columns {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

#latestAgendaBox {
  width: 100%;
  margin-bottom: 20px;
}

#latestAgendaBox h2 {
  margin-top: 0;
  margin-bottom: 0;
}

#agenda-signup {
  line-height: 1;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
}

#agenda-columns {
  max-width: 80%;
  gap: 60px;
}

#agenda-action {
  gap: 10px;
}

#latestAgenda {
  width: 225px;
}

.agenda-boldtext {
  font-weight: bold;
}

#agenda-divder {
  border-right: solid 3px #d2d2d2;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .calendar-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .calendar-grid {
    grid-template-columns: 1fr;
  }
  .agenda-flex-rows {
    flex-direction: column;
  }
  #agenda-columns {
    gap: 5px;
  }
  .agenda-flex-columns {
    flex-direction: row;
    gap: 5px;
  }
  #latestAgenda {
    width: 100%;
  }
  #agenda-columns {
    max-width: 95%;
  }
  #agenda-action {
    justify-content: center;
  }
}
#mainSearch input {
  border: solid 2px #212121;
}

#re-search-input {
  padding: 8px 15px;
  border-radius: 20px;
  width: 80%;
}

#results-paging {
  margin: 30px 0 10px 0;
  font-size: 18px;
  display: flex;
  flex-direction: row;
}

.results-paging-pages {
  margin: 0 20px;
  display: flex;
  gap: 10px;
}

.highlight {
  font-weight: bold;
}

.results-section a {
  text-decoration: none;
}

.results-url {
  font-size: 14px;
  font-style: italic;
}

.resultsList > li {
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
  padding-top: 10px;
  padding-bottom: 40px;
}

.matchList > li {
  margin: 0;
  padding: 0;
}

.matching-section {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 5px;
}

.senator-searchResults {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.senator-searchResults .senator-card {
  margin: 20px;
  padding: 30px 15px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

@media (max-width: 768px) {
  #re-search-input {
    width: 100%;
  }
  .senator-searchResults {
    grid-template-columns: 1fr;
  }
}
footer {
  background-color: #003366;
  color: white;
  padding: 50px 20px 0 20px;
}

footer a {
  color: #a9d1ff;
}

.footer-columns {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-columns h2 {
  font-family: bree, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #a9d1ff;
}

.footer-columns h3 {
  color: #fff;
  margin: 18px 0 8px 0;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.footer-contact p,
.footer-contact a {
  font-size: 1rem;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-logo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
}

.footer-logo-text {
  font-family: bree, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 1px;
}

.footer-map-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.footer-map {
  border-radius: 15px;
}

.related-sites,
.site-info {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.related-sites li,
.site-info li {
  margin-bottom: 6px;
}

.related-sites a,
.site-info a {
  color: #a9d1ff;
  text-decoration: none;
  font-size: 1rem;
}

.related-sites a:hover,
.site-info a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  color: #fff;
  font-size: 0.95rem;
  margin: 10px 0 0 0;
}

/* Footer logo image - larger size */
.footer-logo-img {
  width: 150px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
}

@media (min-width: 1024px) {
  .footer-columns > .footer-column:first-child .footer-contact-text {
    padding-left: 70px;
  }
}
@media (max-width: 1023px) {
  .footer-columns {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-column {
    min-width: 0;
    width: 100%;
    margin-bottom: 18px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 30px 5px 0 5px;
  }
  .footer-logo-text {
    font-size: 1.1rem;
  }
  .footer-columns {
    padding-left: 25px;
    padding-right: 5px;
    max-width: 100vw;
    box-sizing: border-box;
  }
}
/* HERO SECTION OVERHAUL */
.CapitalHero {
  position: relative;
  height: 380px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 90%, 0% 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top; /* center the image */
  background-repeat: no-repeat; /* prevent tiling */
  z-index: 0;
  padding: 0px;
  background-color: #02418b;
}

/* HERO SECTION OVERHAUL */
.CapitalHero-overlay {
  z-index: 0;
  padding: 0px;
  width: 100%;
}

.CapitalHero-bg {
  max-width: 2000px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  margin: 0 auto;
}

.CapitalHero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2vw;
  color: white;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  height: 380px;
}

.CapitalHero-text {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 90vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-top: 75px;
  margin-left: 2.5vw;
}

.CapitalHero h1 {
  color: white;
  font-size: 51px;
  font-family: bree, sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 8px #1D437F, 0 0 2px #fff, 1px 1px 0 #1D437F;
  margin-bottom: 0;
  margin-left: 0;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 1px;
}

.CapitalHero h1 .welcome {
  font-family: bree, sans-serif;
  font-weight: 600;
  font-style: italic;
  /*    margin-left: 3vw;*/
}

.CapitalHero h1 span.michigan-senate {
  display: inline;
  font-size: 51px;
  text-transform: uppercase;
  letter-spacing: 2px;
  /*    margin-left: 4vw;*/
  font-family: bree-serif, serif;
  font-weight: 400;
  font-style: normal;
}

/* Info card layout for hero */
.info-card {
  background-color: rgba(0, 51, 102, 0.85);
  border-radius: 16px;
  width: 450px;
  padding: 10px 25px 50px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  position: absolute;
  z-index: 2;
  height: 250px;
  bottom: 10px;
  right: 0px;
  line-height: 1;
  font-size: 16px;
}

.info-card .btn.learn-more {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  padding: 15px 35px;
  font-size: 1.1rem;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 8px;
}

.info-card .btn.learn-more:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.info-card-logo {
  display: block;
  margin: 0 auto 18px auto;
  max-width: 90px;
  height: auto;
}

@media (min-width: 1600px) {
  .CapitalHero h1 .welcome {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .CapitalHero-overlay {
    z-index: 1;
    background: linear-gradient(to right, #14385b 0%, #0e579f 10%, transparent 30%, transparent 70%, #0e579f 90%, #14385b 100%);
  }
}
@media (min-width: 600px) and (max-width: 1024px) {
  .info-card {
    padding: 40px 40px 40px 100px;
    width: 50vw;
  }
}
@media (max-width: 1024px) {
  .info-card {
    margin-top: 0;
    align-items: center;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(70, 107, 180, 0.8) 20%, rgba(70, 107, 180, 0.8) 100%);
    border-radius: 0;
    box-shadow: unset;
    margin-left: 20px;
  }
  .info-card-logo {
    display: none;
  }
  .info-card .btn.learn-more {
    left: 50%;
    bottom: -22px;
    transform: translateX(-50%);
  }
  .CapitalHero-text {
    display: none !important;
  }
}
@media (max-width: 700px) {
  .info-card {
    padding: 40px 40px 40px 60px;
    width: 70vw;
  }
}
@media (max-width: 400px) {
  .info-card {
    padding: 30px 10px 30px 40px;
  }
}
.main-nav {
  margin-left: 145px;
  font-family: effra, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-nav a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.3s;
}

.main-nav a:hover::after {
  background-color: #980000;
}

.main-nav a i.fa {
  color: #df4248;
  margin-right: 5px;
}

.main-nav .dropdown-menu a i.fa {
  color: #df4248;
  margin-right: 5px;
}

.main-nav .dropdown-menu .level-2 a i.fa {
  color: #df4248;
  margin-right: 5px;
}

/* Navigation arrow styles */
.nav-arrow {
  display: inline-block;
  margin-left: 5px;
  font-size: 0.6em;
  transition: transform 0.2s;
}

.main-nav a:hover .nav-arrow {
  transform: rotate(180deg);
}

.search-form input {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  width: 200px;
  background-color: rgba(255, 255, 255, 0.9);
}

.hamburger {
  display: none;
}

.mobile-nav-overlay {
  display: none;
}

.logo-container {
  display: flex;
  align-items: center;
}

.senate-logo {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.senate-logo::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background-color: #003366;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* Desktop Navigation Dropdown Styles */
.main-nav .has-dropdown {
  position: relative;
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #003366;
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 8px 0;
  border-radius: 4px;
}

.main-nav .has-dropdown:hover > .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li {
  position: relative;
}

.main-nav .dropdown-menu a {
  color: white;
  padding: 8px 20px;
  display: block;
  font-size: 14px;
  white-space: nowrap;
}

.main-nav .dropdown-menu a:hover {
  background: #005596;
  text-decoration: none;
}

.main-nav .dropdown-menu .level-2 {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #003366;
  min-width: 220px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.main-nav .dropdown-menu li:hover > .level-2 {
  display: block;
}

.main-nav .dropdown-menu .nav-arrow {
  float: right;
  margin-left: 8px;
  font-size: 0.8em;
}

/* Mobile Navigation Dropdown Styles */
.mobile-dropdown {
  position: relative;
}

.mobile-submenu {
  display: none;
  background: rgba(0, 51, 102, 0.95);
  padding-left: 20px;
}

.mobile-dropdown.active > .mobile-submenu {
  display: block;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-submenu a {
  color: white;
  font-size: 1.1rem;
  padding: 10px 0;
  display: block;
  text-decoration: none;
}

.mobile-submenu .mobile-submenu {
  background: rgba(0, 85, 150, 0.95);
  padding-left: 20px;
}

/* Unify submenu link and toggle styles */
.mobile-submenu .mobile-dropdown-toggle,
.mobile-submenu a {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 18px 12px 38px;
  border-radius: 6px;
  margin: 2px 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s;
  box-sizing: border-box;
  line-height: 1.2;
}

.mobile-dropdown.active > .mobile-dropdown-toggle .nav-arrow {
  transform: rotate(180deg);
}

/* Highlight all submenu items in an open submenu */
.mobile-dropdown.active > .mobile-submenu > li > a,
.mobile-dropdown.active > .mobile-submenu > li > .mobile-dropdown-toggle {
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
}

.mobile-submenu .mobile-dropdown-toggle {
  padding-left: 38px !important;
}

.mobile-nav-content a i.fa {
  font-size: 1.1em;
  margin-right: 10px;
  min-width: 20px;
  text-align: center;
  opacity: 0.95;
  color: #df4248;
}

.mobile-submenu a i.fa {
  color: #df4248;
}

.mobile-dropdown-toggle i.fa {
  color: #df4248;
}

/* Header logo image - always 36x36px */
.senate-logo-img {
  width: 70px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 0;
}

.logo-mobile {
  display: none;
}

.logo-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* 20px space around the link */
  border-radius: 50%; /* Makes it a circle */
  background: #1D437F; /* Circle background color */
  text-decoration: none;
  margin-top: 25px;
  position: absolute;
  /* border-bottom: solid 2px vars.$primary*/
}

.header-title-mobile {
  display: none;
}

/*.search-form {
    width: 260px;
}*/
.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 70%;
}

.search-input-wrapper input[type=text] {
  width: 100%;
  padding-right: 2.5em;
  border: none;
  border-radius: 20px;
  height: 2.5em;
  background-color: rgba(255, 255, 255, 0.9);
  box-sizing: border-box;
}

.search-input-wrapper .search-button {
  position: absolute;
  right: 0.3em;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  padding: 0;
  margin: 0;
  height: 2em;
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.search-input-wrapper .search-button:hover,
.search-input-wrapper .search-button:focus {
  background: #e0e0e0;
  color: #003366;
}

.search-input-wrapper .search-button i {
  font-size: 1.1em;
}

.senate-logo-img {
  height: 60px;
}

@media (min-width: 1024px) and (max-width: 1100px) {
  .main-nav ul {
    gap: 15px;
  }
  #search-desktop {
    margin-left: 0;
  }
  .main-nav {
    margin-left: 100px;
  }
}
@media (min-width: 1100px) and (max-width: 1206px) {
  .main-nav ul {
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .logo-mobile {
    display: inline !important;
  }
  .logo-desktop {
    display: none !important;
  }
  .search-form {
    margin-top: 10vh;
  }
  #search-desktop {
    display: none;
  }
  #search-mobile .search-input-wrapper {
    width: 95%;
  }
  .main-nav {
    display: none !important;
  }
  .header-container {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    padding: 0 10px;
    min-height: 60px;
    position: relative;
  }
  .logo-mobile {
    display: inline !important;
    width: 48px;
    object-fit: contain;
    position: absolute;
    top: 0px;
    left: 10px;
  }
  .header-title-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 auto;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    margin: auto;
    pointer-events: none;
    z-index: 1;
  }
  .header-michigan {
    font-family: bree-serif, serif;
    font-weight: 400;
    font-style: normal;
    font-size: 0.95rem;
    color: #fff;
    letter-spacing: 0.12em;
    text-align: center;
    line-height: 1;
  }
  .header-senate {
    font-family: effra, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 2rem;
    color: #fff;
    text-align: center;
    line-height: 0.9;
    letter-spacing: 0.04em;
  }
  .hamburger {
    display: block !important;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    z-index: 2;
    cursor: pointer;
    box-shadow: none;
    padding: 0px 8px;
    margin-right: 0;
    position: absolute;
    right: 20px;
    top: 18px;
  }
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 51, 102, 0.98);
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.4, 2, 0.6, 1), opacity 0.3s;
    transform: translateX(-100vw);
    opacity: 0;
  }
  .mobile-nav-overlay.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }
  .mobile-nav-content {
    width: 100vw;
    padding: 0 20px;
    position: relative;
  }
  .close-mobile-menu {
    position: absolute;
    top: 10px;
    right: 18px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    z-index: 1004;
    cursor: pointer;
    padding: 4px 8px;
  }
  .close-mobile-menu:focus {
    outline: 2px solid #fff;
  }
  .mobile-nav-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
  }
  .mobile-nav-content ul li {
    margin-bottom: 18px;
  }
  .mobile-nav-content ul li a {
    color: white;
    font-weight: 700;
    text-decoration: none;
    display: block;
  }
  /*
      .mobile-search-form {
          width: 100%;
          margin: 16px 0 24px 0;
          display: flex;
          align-items: center;
          justify-content: flex-start;
      }

      .mobile-search-form input {
          width: 100%;
          padding: 10px;
          border-radius: 20px;
          border: none;
          margin-right: 8px;
      }*/
  /*    .mobile-search-form .search-button {
          background: #003366;
          color: white;
          border: none;
          border-radius: 50%;
          width: 36px;
          height: 36px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.1rem;
          margin-left: 0;
      }
  */
  /* Update existing mobile nav styles */
  .main-nav {
    display: none !important;
  }
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 51, 102, 0.98);
    z-index: 1001;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: transform 0.3s cubic-bezier(0.4, 2, 0.6, 1), opacity 0.3s;
    transform: translateX(-100vw);
    opacity: 0;
    overflow-y: auto;
  }
  .mobile-nav-overlay.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
  }
  .mobile-nav-content {
    width: 100%;
    padding: 20px;
  }
  .mobile-nav-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-nav-content ul li {
    margin-bottom: 0;
  }
  /* Enhanced Mobile Navigation Dropdown Styles */
  .mobile-nav-overlay {
    background: #003366 !important;
  }
  .mobile-nav-content ul {
    padding: 0;
    margin: 0;
  }
  .mobile-nav-content ul li {
    margin-bottom: 0;
  }
  .mobile-nav-content .mobile-dropdown-toggle,
  .mobile-nav-content > ul > li > a {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    border-radius: 0;
    background: none;
    border: none;
    transition: background 0.2s;
    gap: 12px;
  }
  .mobile-nav-content a i.fa {
    font-size: 1.1em;
    margin-right: 10px;
    min-width: 20px;
    text-align: center;
    opacity: 0.95;
    color: #df4248;
  }
  .mobile-nav-content .mobile-dropdown-toggle .nav-arrow {
    margin-left: auto;
    display: flex;
    align-items: center;
    transition: transform 0.3s;
  }
  .mobile-dropdown.active > .mobile-dropdown-toggle .nav-arrow {
    transform: rotate(180deg);
  }
  .mobile-submenu {
    background: #0e579f;
    border-radius: 8px;
    margin: 0 0 10px 0;
    padding: 6px 0 6px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: background 0.2s;
  }
  .mobile-submenu.level-2 {
    background: #174a7c;
    margin: 10px 0 10px 0;
    padding-left: 10px;
    border-radius: 8px;
  }
  .mobile-submenu a {
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 12px 18px 12px 38px;
    border-radius: 6px;
    margin: 2px 0;
    background: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
  }
  .mobile-submenu a:hover {
    background: #005596;
    color: #fff;
    text-decoration: none;
  }
  .mobile-submenu.level-2 a {
    padding-left: 48px;
    font-size: 1rem;
  }
  .mobile-nav-content .mobile-dropdown-toggle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: none;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0;
    padding: 14px 18px;
  }
  .mobile-nav-content .mobile-dropdown-toggle:hover {
    background: #005596;
    color: #fff;
  }
  .mobile-nav-content ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-nav-content .nav-arrow.placeholder {
    width: 1.2em;
    height: 1em;
    display: inline-block;
    visibility: hidden;
    margin-left: auto;
  }
}
@media (max-width: 1024px) {
  .search-form {
    margin-top: 10vh;
  }
}
@media (max-width: 700px) {
  .logo-desktop {
    display: none !important;
  }
  /*  .logo-mobile {
      display: inline !important;
  }*/
}
@media (max-width: 600px) {
  .header-container,
  .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  /* .search-form {
      width: 100%;
      max-width: 100vw;
      display: flex;
      box-sizing: border-box;
  }*/
  .search-form input {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .search-button {
    min-width: 32px;
    width: 32px;
    max-width: 32px;
    padding: 0;
    margin-left: -32px;
    box-sizing: border-box;
  }
  search button styles .search-button {
    background: none;
    border: none;
    padding: 0;
    margin-left: -30px;
    cursor: pointer;
  }
  .search-button img {
    width: 16px;
    height: 16px;
    opacity: 0.6;
    transition: opacity 0.2s;
  }
  .search-button:hover img {
    opacity: 1;
  }
}
.search-options span {
  color: #BE1E2D;
  font-weight: bold;
  margin-right: 10px;
}

.radio-group {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.radio-container {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #444;
  margin-right: 10px;
}

.radio-container input[type=radio] {
  display: none;
}

.radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #003366;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s;
}

.radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background-color: #003366;
  border-radius: 50%;
  transition: transform 0.2s;
}

.radio-container input[type=radio]:checked + .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.search-options {
  font-size: 20px;
  margin: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.search-box {
  margin: 25px auto;
  max-width: 800px;
}

.search-box input {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 1rem;
  margin-bottom: 20px;
}

@media (max-width: 500px) {
  .search-options {
    flex-direction: column;
  }
}
/*.responstiveTable {
    margin: 2rem 0;

    .rTable {
        overflow: hidden;
        margin-top: 10px;
        margin-bottom: 10px;
        display:grid
    }

    .rRow {
        display: grid;
    }

    .rCell {
        padding: 0.75rem .25rem;
        font-size: 1rem;
        text-align: center;

        &:last-child {
            border-right: none;
        }
    }

    .rEmptyCell {
        background: vars.$altRowColor;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    .rHeader {
        background: vars.$altRowColor;
        font-weight: bold;
        color: vars.$primary;*/
/*   display: flex;*/
/*align-items: center;*/
/*justify-content: space-around; // default, aligns text left*/
/*// Add | after every header
        &::after {
            content: "|";
            color: #888;
            margin-left: auto;
            float: right;
        }
    }

    .rLabel {
        text-align: left;
    }
}*/
.last-header {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

/*.responstiveTable .last-header::after {
    content: "";
}*/
.responsive-table {
  width: 100%;
  border-collapse: collapse;
}
.responsive-table td {
  padding: 8px;
}
.responsive-table th {
  background: #f5f5f5;
  font-weight: bold;
  color: #BE1E2D;
  padding: 8px;
}
.responsive-table th:not(:last-child):not(:first-child)::after {
  content: "|";
  color: #888;
  margin-left: auto;
  float: right;
}
.responsive-table .rCell {
  text-align: center;
}

.responsive-list-flex {
  display: flex;
  gap: 1rem;
  flex-direction: row;
}

.responsive-list-column {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
}

.responsive-list-column li {
  list-style: none;
}

@media (min-width: 700px) {
  .rHeaderMobile {
    display: none;
  }
  .responstiveTable .rLabel {
    margin-left: 20px;
  }
}
@media (max-width: 699px) {
  .responsive-list-flex {
    flex-direction: column;
    gap: 0;
  }
  .rHeader, .rEmptyCell {
    display: none;
  }
  .responstiveTable .rLabel {
    color: #1D437F;
    font-weight: bold;
    padding: 0.25rem;
    background-color: #f5f5f5;
    border-radius: 5px;
  }
  .responstiveTable .rHeaderMobile {
    font-weight: bold;
  }
  .responstiveTable .rTable {
    grid-template-columns: 1fr !important;
  }
  .responstiveTable .rCell {
    text-align: left;
    padding: 0.25rem;
  }
  .responsive-table {
    display: block;
  }
  .responsive-table th {
    display: none;
  }
  .responsive-table tr {
    display: block;
    margin-bottom: 1rem;
  }
  .responsive-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}
.bannerAnnouncement {
  display: none;
  position: fixed;
  font-size: 16px;
  position: relative;
  z-index: 9999;
  text-align: center;
}

.bannerClear {
  cursor: pointer;
  margin-left: 30px;
}

/*# sourceMappingURL=senateStyles.css.map */
