/* Custom styling for date inputs to match Soft UI Dashboard theme */

input[type="date"] {
    border: 1px solid #e9ecef !important;
    border-radius: 0.5rem !important;
    background: #fff !important;
    color: #344767 !important;
    font-weight: 500 !important;
    font-size: 0.875rem !important;
    padding: 0.5rem 0.75rem !important;
    transition: all 0.15s ease-in-out !important;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1) !important;
}

input[type="date"]:focus {
    border-color: #2152ff !important;
    box-shadow: 0 0 0 0.2rem rgba(33, 82, 255, 0.25) !important;
    outline: none !important;
}

input[type="date"]:hover {
    border-color: #2152ff !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15) !important;
}

/* Date input placeholder styling */
input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    color: #344767 !important;
}

input[type="date"]::-webkit-datetime-edit-text {
    color: #6c757d !important;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #344767 !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: transparent !important;
    color: #6c757d !important;
    cursor: pointer !important;
    padding: 2px !important;
    border-radius: 0.25rem !important;
    transition: all 0.15s ease-in-out !important;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
    background-color: rgba(33, 82, 255, 0.1) !important;
    color: #2152ff !important;
}

/* Responsive design */
@media (max-width: 768px) {
    input[type="date"] {
        font-size: 0.8rem !important;
        padding: 0.375rem 0.5rem !important;
    }
}


