.leftArrow {
    position: relative;
    right: 10px;
    top: 2px;
    cursor: pointer;
    padding: 10px;
}

.leftArrow:hover {
    color: #3cc;
}

.rightArrow {
    position: relative;
    left: 0px;
    top: 2px;
    cursor: pointer;
    padding: 10px;
}

.rightArrow:hover {
    color: #3cc;
}

.todayDate {
    padding-left: 10px;
    padding-top: 5px;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0px;
    width: 175px;
    user-select: none;
    -webkit-user-select: none;
}

.navigator {
    display: flex;
    align-items: center;
}

.calendarHeader {
    background: #012145;
    color: #fff;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 86px;
    user-select: none;
    -webkit-user-select: none;
}

.calendarHeader h3 {
    font-size: 1.7em;
}

.dayViewBtn, .weekViewBtn {
    padding: 10px;
    border: none;
    cursor:pointer;
    border: none;
}

.dayViewBtn:hover, .weekViewBtn:hover {
    background-color: #ddd;
}

.viewToggle {
    display: flex;
    border: 1px solid #fff;
    border-radius: 5px;
}

.viewToggle a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.datePickerIcon {
    position: relative;
    top: -5px;
    margin-top: 5px;
    margin-left: 0px;
    margin-right: 20px;
    margin-bottom: 10px;
}