/* Container */
.pdp-default {
  font-family: "Roboto", sans-serif;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background: #fff;
  padding: 8px;
  position: absolute;
}

/* Header */
.pdp-default .pdp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black; /* MUI primary */
  color: white;
  font-weight: 500;
  padding: 0 12px;
  border-radius: 8px 8px 0 0;
}

.pdp-default .pdp-header .nextArrow,
.pdp-default .pdp-header .prevArrow {
  cursor: pointer;
  padding: 0 8px;
  font-size: 18px;
  transition: color 0.2s;
}

.pdp-default .pdp-header .nextArrow:hover,
.pdp-default .pdp-header .prevArrow:hover {
  color: #90caf9; /* lighter blue */
}

/* Days of week row */
.pdp-default .dows {
  display: flex;
  border-bottom: 1px solid #eee;
      gap: 20px;
    padding: 4px 0px;
}

.pdp-default .dows .dow {
  flex: 1;
  text-align: center;
  font-weight: 800;
  color: black;
  width: 28px !important;
  height: 28px !important;
  line-height: unset !important;
}

/* Days grid */
.pdp-default .days {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
}

.days > div {
  display: flex;
  justify-content: start;
  padding: 4px 0;
  gap: 20px;
}

.pdp-default .day , .pdp-default .nul {
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border-radius: 50%;
  width: 28px !important;
  height: 28px !important;
  line-height: unset !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.pdp-default .nul {
  display: none !important;
}

.pdp-default .day:hover , .pdp-default .nul:hover {
  background: rgba(25, 118, 210, 0.08);
}

/* Today */
.pdp-default .day.today {
  border: 1px solid black;
  font-weight: bold;
}

/* Selected */
.pdp-default .day.selday {
  background: black;
  color: white !important;
}

/* Fridays */
.pdp-default .day.friday {
  color: #d32f2f; /* red */
}

/* Footer */
.pdp-default .pdp-footer {
  text-align: center;
  border-top: 1px solid #eee;
  margin-top: 8px;
}

.pdp-default .pdp-footer .goToday {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 8px;
  background: black;
  color: white;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s;
}

.pdp-default .pdp-footer .goToday:hover {
  background: black;
}

.yearSelect {
  overflow: scroll;
}

.yearSelect[style*="display: inline-block"] , .monthSelect[style*="display: inline-block"] {
  position: absolute !important;
  display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    background: white !important;
    width: 97% !important;
    height: 306px !important;
    padding: 10px !important;
}

.yearSelect > li , .monthSelect > li {
  width: fit-content !important;
    padding: unset !important;
    line-height: unset !important;
    cursor: pointer;
}

@media (max-width: 991px) {
  .days > div , .pdp-default .dows{
    gap: 15px;
  }
  .yearSelect > li, .monthSelect > li {
    padding: unset !important;
  }
  .monthSelect[style*="display: inline-block"] {
    height: 80% !important;
  }
}