.filter-container {
  max-width: 600px;
  margin: 20px auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.filter-header {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.filter-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.close-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  color: #666;
}

.filter-content {
  flex: 1;
  overflow-y: auto;
  padding: 0 0 80px 0;
  /* Bottom padding for fixed footer */
}

.date-filter {
  display: flex;
  border-bottom: 1px solid #eee;
}

.quick-filters {
  width: 40%;
  border-right: 1px solid #eee;
  padding: 15px 0;
}

.quick-filter-option {
  padding: 12px 20px;
  color: #4f46e5;
  cursor: pointer;
  transition: background-color 0.2s;
}

.quick-filter-option:hover {
  background-color: #f9fafb;
}

.quick-filter-option:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.calendar {
  width: 60%;
  padding: 15px;
}

.date-range {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background-color: #3949ab;
  color: white;
  border-radius: 6px;
  padding: 10px;
}

.date-input {
  background: white;
  border: none;
  padding: 8px;
  width: 80px;
  border-radius: 4px;
  text-align: center;
}

.date-range-separator {
  flex: 1;
  text-align: center;
  font-weight: 500;
}

.month-selector {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.month-name {
  font-weight: 500;
  font-size: 16px;
}

.month-arrow {
  cursor: pointer;
  color: #666;
  font-size: 18px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.day-header {
  font-weight: 500;
  color: #666;
  padding: 5px 0;
  font-size: 14px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  font-size: 14px;
}

.calendar-day:hover {
  background-color: #f0f0f0;
}

.calendar-day.selected {
  background-color: #3949ab;
  color: white;
}

.calendar-day.other-month {
  color: #ccc;
}

.booking-type {
  padding: 20px;
}

.booking-type h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.booking-type h3 span {
  color: red;
}

.select-container {
  position: relative;
  margin-bottom: 20px;
}

.select-box {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  appearance: none;
  background-color: white;
  cursor: pointer;
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  z-index: 10;
  max-height: 250px;
  overflow-y: auto;
}

.select-option {
  padding: 12px 15px;
  cursor: pointer;
}

.select-option:hover {
  background-color: #f9fafb;
}

.select-option.selected {
  background-color: #3949ab;
  color: white;
}

.filter-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  background: white;
  display: flex;
  gap: 10px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}

.btn-reset {
  background-color: #f06292;
  color: white;
}

.btn-apply {
  background-color: #3949ab;
  color: white;
}

.toast {
  min-width: 250px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toast.error { background: #ef4444; }
.toast.success { background: #22c55e; }
.toast.info { background: #3b82f6; }
