/* Modern Date Selection Styling - Two Column Layout */
.datepicker-launch {
  margin: 20px 0;
}

.date-input-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  min-height: 40px;
  padding-top: 0;
}

.date-input-field {
  background: #fff;
  border: 2px solid #b8a9c9;
  border-radius: 8px;
  padding: 10px 10px 10px 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  min-height: 40px;
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.date-input-field:hover {
  border-color: #bbdefb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-label {
  color: #9e9e9e;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-value {
  color: #424242;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.date-dropdown-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #424242;
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .date-input-container {
    justify-content: center;
  }
  
  .date-input-field {
    min-height: 80px;
    padding: 16px;
    max-width: 100%;
  }
}
