.crp-calendar-wrapper {
  direction: rtl;
  font-family: inherit;
  max-width: 70%;
  text-align: center;
  border: 1px solid #006b8b;
  border-radius: 10px;
}

.calendar-header {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px 10px 0px 0px;
  color: #464646;
  padding: 12px 8px;
}
.calendar-header button {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #464646;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0px;
}

.calendar-cell {
  background: none;
  padding: 12px 12px;
  font-size: 15px;
  color: #494949;
}
.calendar-cell.empty {
  background: transparent;
}
.calendar-cell.disabled {
  color: #ccc;
  background: #ffffff;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-day {
    background: #006b8b3b;
    padding: 12px 8px;
    color: #191919;
}

.calendar-cell.selectable {
  cursor: pointer !important; 
  transition: background 0.2s;
}

.calendar-cell.selectable:hover {
  background: #f0f0f0;
}



@media (max-width: 600px) {
  .crp-calendar-wrapper {
    max-width: 100%;
  }
  .calendar-day {
    padding: 12px 4px;
    text-wrap-mode: nowrap;
    font-size: 12px;
  }
}

