/***********************month radio sidebar filter***********************/
.months-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
  gap: 8px;

}

.month-label {
  position: relative;
  cursor: pointer;
  padding: 4px 8px;
  margin: 5px;
  border-radius: 12px;
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 100px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.month-label:hover {
  background-color: #e7f1ff;
  border-color: #b3d2fd;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

input[type="radio"]:checked+.month-label {
  background-color: rgb(46, 46, 46);
  color: white;
  border-color: black;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgb(46, 46, 46, 0.3);
}

input[type="radio"] {
  display: none;
}



/***********************pdf pages navigation styles***********************/

.navigation-container {
  display: flex;
  justify-content: center;
  padding: 8px;
  max-width: 100%;
}

.navigation-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 2px;
  gap: 4px;
  background: rgb(226, 226, 226);
  border: 1px solid #b8b8b852;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.navigation-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
  text-decoration: none;
  padding: 5px 24px;
  background-color: transparent;
  color: #474747;
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
  text-align: center;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.25s ease, background-color 0.25s ease, font-weight 0.25s ease;
}

.navigation-link:hover {
  background-color: #5d5d5e60;
  color: #222;
}

.navigation-link.active {
  color: rgb(46, 46, 46);
  font-weight: 600;
  background: white;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);

}

@media (max-width: 600px) {
  .navigation-link {
    flex: 1 1 45%;
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: wrap;
  }
}