
#myc-container {
    width: inherit;
}

#myc-nav-container {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#myc-current-month-year-container {
    display: inline-block;
    font-size: 1.5em;
    font-weight: lighter;
    text-align: center;
    text-transform: capitalize;
    vertical-align: top;
    width: 68%;
}

#myc-prev-week-container {
    display: inline-block;
    width: 15%;
}

#myc-next-week-container {
    display: inline-block;
    width: 15%;
}

#myc-prev-week {
    border: 1px solid #e0e0e0;
    border-radius: 80px;
    color: #e0e0e0;
    cursor: pointer;
    float: left;
    font-size: 1.6em;
    font-weight: lighter;
    height: 40px;
    text-align: center;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myc-next-week {
    border: 1px solid #e0e0e0;
    border-radius: 80px;
    color: #e0e0e0;
    cursor: pointer;
    float: right;
    font-size: 1.6em;
    font-weight: lighter;
    height: 40px;
    text-align: center;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#myc-prev-week:hover, #myc-next-week:hover {
    border: 1px solid #bdbdbd;
    color: #bdbdbd;
}

#myc-week-container {
    border: 1px solid #e0e0e0;
}

#myc-dates-container {
    background-color: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.myc-date-header {
    width: 100%;
    border-right: 1px solid #e0e0e0;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
}




#myc-available-time-container {
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.myc-day-time-container {
    width: 100%;
    border-right: 1px solid #e0e0e0;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    height: 450px;
}



.myc-date-number {
    font-size: 1.8em;
    font-weight: lighter;
}

.myc-available-time {
    width: 80%;

    background-color: #ffc107;
    border-radius: 20px;
    color: #ffffff;
    display: block;
    margin-bottom: 15px;
    padding: 10px 0px 10px 0px;
    text-align: center;
}

.myc-available-time.selected, .myc-available-time:hover {
    background-color: #cddc39;
    color: #fff;
    font-weight: 600;
}
.myc-available-time.disabled {
    background-color: #ccc;
}

.myc-date-display {
    font-weight: lighter;
}

@media only screen and (max-width: 768px) {

    /*.myc-date-header:last-of-type, .myc-day-time-container:last-of-type {
        width: 12%;
    }*/
}
