.calendar {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    padding: 2px;
    text-align: center;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

table {
    width: 100%;
}

#calendar-body {
    width: 215px;
}

th,
td {
    padding: 5px;
    text-align: center;
}

#prev-month,
#next-month {
    /*background-color: transparent;*/
    background-color: #02887D;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    padding: 5px;
    outline: none;
}

#today {
    /*background-color: transparent;*/
    background-color: #02887D;
    color: #fff;
    font-weight: normal;
}

.calendar,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
    font-size: 13px;
}

.calendar table tr {
    line-height: 1.9;
}

.calendar th {
    background: #02887D;
    color: #fff;
}

.calendar td {
    padding: 0px !important;
}

#calendar-body .empty {
    background-color: #f5f5f5;
}

#calendar-body .today {
    background-color: #02887D;
    color: white;
}