.datePicker {
    border: 2px solid black;
    width: 165px;
    font-family: var(--fontFamily), serif;
    font-size: 14px;
    background-color: #dddddd;
    border-radius: 5px;
    padding: 10px;
    color: #000000;
}

.datePickerFriday {
    color: red;
}

.datePickerDay {
    width: 25px;
    height: 12px;
    text-align: center;
    cursor: pointer;
}

.datePickerDay:hover {
    background-color: #ff5b56;
    color: white;
}

.datePickerDaySelect {
    text-align: center;
    cursor: pointer;
    background-color: darkred;
    color: #FFFFFF;
    border-radius: 2px;
}

.datePickerToday {
    text-align: center;
    cursor: pointer;
    background-color: #3E7993;
    color: #FFFFFF;
    border-radius: 2px;
}

.datePickerHeader button, .datePickerFooter button {
    border-radius: 2px;
    padding: 0 8px 5px 8px;
    height: 12px;
    font-family: var(--fontFamily), serif;
    font-size: 11px;
    cursor: pointer;
    width: 15px;
}

.datePickerFooter button {
    height: 20px;
    width: 60px;
    box-shadow: none;
    border: none;
}

.datePickerFooter {
    text-align: center;
}

.datePickerHeader select {
    /*width: 75px;*/
    background-color: transparent;
    color: black;
    box-shadow: none;
    border: none;
    cursor: pointer;
}

#yearDatepicker {
    width: 55px;
    direction: rtl;
    color: black;
    float: left;
}

#monthDatepicker {
    width: 80px;
}

.datePickerHeader option {
    background-color: #DDDDDD;
}

.datePicker tr td:nth-of-type(7):not(.datePickerDay) {
    display: none;
}

