.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;
}



