﻿/* Date Input Helper Styles - UPDATED */
.date-input-error {
    border: 2px solid #ff0000 !important;
    background-color: #ffe6e6 !important;
    box-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
}

.date-input-warning {
    border: 2px solid #ffa500 !important;
    background-color: #fff3cd !important;
    box-shadow: 0 0 3px rgba(255, 165, 0, 0.3);
}

.date-input-success {
    border: 2px solid #28a745 !important;
    background-color: #e6ffe6 !important;
}

.date-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.date-input-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 16px;
    pointer-events: none;
}

.date-input-wrapper input {
    padding-right: 30px;
}

/* Placeholder styling for better UX */
.date-input-auto::placeholder {
    color: #999;
    font-style: italic;
}
