/* Bootstrap Datepicker Styles */
.datepicker {
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.datepicker-days thead tr:first-child th,
.datepicker-months thead tr:first-child th,
.datepicker-years thead tr:first-child th,
.datepicker-decades thead tr:first-child th {
    padding: 8px;
    background: #f5f5f5;
}

.datepicker table tr td.today {
    background: #d4a574;
    color: #fff;
}

.datepicker table tr td.selected,
.datepicker table tr td.selected:hover {
    background: #d4a574;
    color: #fff;
}

.datepicker table tr td:hover {
    background: #f5f5f5;
    cursor: pointer;
}
