﻿/* Style for the label */
.custom-label {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: inline-block;
}

/* Style for the input field */
.custom-date-input {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .custom-date-input:hover {
        border-color: #80bdff;
        background-color: #fff;
    }

    .custom-date-input:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

    /* Disabled state */
    .custom-date-input:disabled {
        background-color: #e9ecef;
        opacity: 0.65;
        cursor: not-allowed;
    }

/* Mobile-friendly adjustments */
@media (max-width: 768px) {
    .custom-date-input {
        font-size: 14px;
        padding: 8px;
    }
}
