
.date-picker-container[data-v-19861d03] {
  position: relative;
  width: 100%;
}
.date-picker-label[data-v-19861d03] {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.date-picker-trigger[data-v-19861d03] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}
.date-picker-trigger[data-v-19861d03]:hover {
  border-color: #d1d5db;
}
.date-picker-trigger[data-v-19861d03]:focus-within {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}
.date-picker-trigger.error[data-v-19861d03] {
  border-color: #ef4444;
}
.selected-date[data-v-19861d03] {
  color: #374151;
}
.calendar-icon[data-v-19861d03] {
  color: #6b7280;
  width: 18px;
  flex-shrink: 0;
}
.calendar-overlay[data-v-19861d03] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.calendar-container[data-v-19861d03] {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
}
.calendar-container.dual-month[data-v-19861d03] {
  padding: 2rem;
}
.dual-calendar[data-v-19861d03] {
  display: flex;
  gap: 2rem;
}
.calendar-month[data-v-19861d03] {
  min-width: 280px;
}
.calendar-header[data-v-19861d03] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.month-title[data-v-19861d03] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}
.nav-button[data-v-19861d03] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  border-radius: 0.375rem;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s ease;
}
.nav-button[data-v-19861d03]:hover {
  background: #f3f4f6;
  color: #374151;
}
.calendar-grid[data-v-19861d03] {
  width: 100%;
}
.weekdays[data-v-19861d03] {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.weekday[data-v-19861d03] {
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
}
.days-grid[data-v-19861d03] {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}
.day-button[data-v-19861d03] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
  transition: all 0.2s ease;
}
.day-button[data-v-19861d03]:hover:not(.disabled):not(.other-month) {
  background: #f3f4f6;
}
.day-button.selected[data-v-19861d03] {
  background: #3b82f6;
  color: white;
}
.day-button.today[data-v-19861d03]:not(.selected) {
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 600;
}
.day-button.other-month[data-v-19861d03] {
  color: #d1d5db;
  cursor: default;
}
.day-button.disabled[data-v-19861d03] {
  color: #d1d5db;
  cursor: not-allowed;
  text-decoration: line-through;
}
.disabled-message[data-v-19861d03] {
  margin-top: 1rem;
  padding: 0.75rem;
  background: #f3f4f6;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}
@media (max-width: 640px) {
.dual-calendar[data-v-19861d03] {
    flex-direction: column;
    gap: 1rem;
}
.calendar-container.dual-month[data-v-19861d03] {
    padding: 1rem;
}
.calendar-month[data-v-19861d03] {
    min-width: auto;
}
}
