.datepicker-dropdown {
    /*background-color: #f8f9fa; !* Light gray *!*/
    border: 1px solid #007bff; /* Blue border */
}

/* Change header background and text color */
/*.datepicker table tr th {*/
/*    background-color: #007bff; !* Blue header *!*/
/*    color: white;*/
/*}*/

/* Change the color of selected date */
.datepicker table tr td.active,
.datepicker table tr td.active:hover {
    background-color: #28a745 !important; /* Green */
    color: white !important;
}

/* Change the color of today's date */
.datepicker table tr td.today {
    background-color: #ffc107 !important; /* Yellow */
    color: black !important;
}

.datepicker table tr td.new,
.datepicker table tr td.old
{
    color: #999;
}

/* Change the hover effect on dates */
.datepicker table tr td.day:hover {
    background-color: #ff5722; /* Orange */
    color: white;
}

.datepicker table tr td,
.datepicker table tr th {
    width: 40px !important;   /* Change width */
    height: 40px !important;  /* Change height */
    text-align: center;       /* Center the numbers */
}

.datepicker table td.sunday {
    color: red;
}

/* Saturday - Green */
.datepicker table td.saturday {
    color: red;
}


