.date-picker {
    cursor: pointer;
}

.date-picker-holder {
    z-index: 9999 !important;
    position: fixed;
    background-color: Black;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    text-align: center;
}

.date-picker-table {
    z-index: 99999 !important;
    position: fixed;
    background-color: White;
    padding: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 2px;
    box-shadow: 0 3px 6px 0px #757575;
    margin: 0px !important;
}

.date-picker-table table {
    width: 100% !important;
}

.date-picker-table td {
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

.selected-date {
    background-color: #008D4C; /* Background color */
    color: #ffffff; /* Text color */
    border-radius: 5px;
}

.current-date {
    color: #FF9800; /* Text color for the current date */
}

.monthYear {
    background-color: #008D4C; /* Background color */
}

.date-picker-table button {
    margin: 5px;
    padding: 5px 10px;
    background-color: #FF9800;
    box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 100;
}

.date-picker-table button:hover {
    background-color: #FF9800;
    box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
}


@media only screen and (max-width: 768px) {
    .date-picker-table {
        position: absolute;
        top: 5vw !important;
        left: 5vw !important;
        width: 90vw;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
    }

    .date-picker-table td {
        padding: 2vw;
        font-size: 4vw;
    }
}
