.menu-type-page li > a,
.menu-vertical-items li > a,
.menu-vertical-2370165 li > a {
    color: white !important;  /* or any color you want */
}


:root {
    --nav-dropdown-background: #222; /* dark background */
}
.dropdown-toggle .caret {
    border-top: 4px solid #fff !important;
    border-right: 4px solid transparent !important;
    border-left: 4px solid transparent !important;
    border-bottom: 0 !important;
    opacity: 1 !important;
}

@media (max-width: 767px) {
  .nav.navbar-nav.menu-vertical-items li a {
    color: #000 !important;
}
}
/* CSS for Year in Review PDF page */
.yir-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.yir-tab {
  font-size: 14px;
  padding: 7px 22px;
  border-radius: 20px;
  border: 1px solid #ccc;
  color: #555;
  cursor: pointer;
  background: white;
  transition: all 0.15s;
}

.yir-tab.active {
  background: #c41e1e;
  color: white;
  border-color: #c41e1e;
}

.yir-viewer-bar {
  background: #f5f3ef;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 8px 14px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #555;
}

.yir-iframe-wrap {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  display: none;
}

.yir-iframe-wrap.active {
  display: block;
}

.yir-iframe-wrap iframe {
  width: 100%;
  height: 700px;
  border: none;
  display: block;
}

.yir-actions {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.yir-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid #ccc;
  color: #555;
  background: white;
  text-decoration: none;
}

.yir-download:hover {
  background: #f5f5f5;
}

/* CSS for button section */
.yir-label {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 16px;
}
 
.yir-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
 
.yir-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s;
  width: calc(33.333% - 10px);
  box-sizing: border-box;
}
 
.yir-card:hover {
  border-color: #c41e1e;
}
 
.yir-card--featured {
  border: 2px solid #c41e1e;
}
 
.yir-badge {
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 20px;
  background: #fdeaea;
  color: #c41e1e;
}
 
.yir-year {
  font-size: 26px;
  font-weight: 500;
  color: #1a1a1a;
}
 
.yir-sub {
  font-size: 12px;
  color: #888;
}
 
.yir-arrow {
  font-size: 16px;
  color: #c41e1e;
}
 
/* Mobile: 1 card per row on small screens */
@media (max-width: 480px) {
  .yir-card {
    width: 100%;
  }
}

