.edit-mode-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #fff;
}

.edit-mode-option input {
  accent-color: #0d6efd;
  cursor: pointer;
}

.edit-mode-option:hover {
  border-color: #0d6efd;
  background: #f8f9ff;
}

.edit-mode-option input:checked + span {
  color: #0d6efd;
  font-weight: 600;
}

.edited-day {
  background-color: #a2d1ff !important;
  border: 1px solid #dee2e6;
}

.legend-box {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
}

.legend-box.selected {
  background-color: #ffe6cc;
}

.legend-box.active-day {
  background-color: #ff9540;
}

.legend-box.edited {
  background-color: #a2d1ff;
}

.legend-box.clossed {
  background-color: #ff040463;
}

.day.selected {
  background-color: #fd7e14 !important;
  color: white;
}

.day.active-day {
  border: 2px solid #d63384 !important;
}

.day.clossed {
  background-color: #ff040463;
}

.section-action-sabt-price {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef !important;
  transition: all 0.3s ease;
  opacity: 0;
  height: 0;
}

.section-text-date-one,
.section-text-date-range {
  color: #495057;
  font-weight: 600;
  padding-bottom: 15px;
  border-bottom: 1px dashed #dee2e6;
}

.form-control:focus {
  border-color: #0dcaf0;
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.15);
}

.price-edit-mode p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #6c757d;
}

.btn-applly-price {
  width: 100% !important;
  font-weight: 500;
}

.day.selected.selected {
  transition: all 0.3s ease;
  animation: miniShake 0.5s ease-in-out infinite alternate;
}

@keyframes miniShake {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1);
  }
}
