/**
 * Custom styles for date picker
 */
.flatpickr-calendar {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #272E66 !important;
  border-color: #272E66 !important;
}

.flatpickr-day.inRange {
  background: rgba(39, 46, 102, 0.1) !important;
  border-color: rgba(39, 46, 102, 0.2) !important;
}

/* Style for the input fields */
.date-picker,
.date-range-picker {
  background-color: #fff;
  cursor: pointer;
  padding-right: 30px; /* Để tránh text bị che bởi icon */
}

/* Add calendar icon to the right side */
.date-picker-wrapper,
.date-range-picker-wrapper {
  position: relative;
}

.date-picker-wrapper::after,
.date-range-picker-wrapper::after {
  content: '\f133';
  font-family: 'FontAwesome';
  position: absolute;
  right: 12px;
  top: 70%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #272E66;
  font-size: 16px;
  margin-top: 2px; /* Điều chỉnh vị trí dọc chính xác hơn */
  line-height: 1;
  z-index: 2; /* Đảm bảo icon hiển thị trên cùng */
}
