
#myc-container {
    width: inherit;
}

#myc-nav-container {
    margin-bottom: 15px;
    width: inherit;
    display:none;
}

#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;
}

#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;
}

#myc-prev-week:hover, #myc-next-week:hover {
    border: 1px solid #bdbdbd;
    color: #bdbdbd;
}

#myc-week-container {
    border-radius: 5px;
}

#myc-dates-container {
    /*background-color: #fafafa;*/
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%/3, max(64px, 100%/5)), 1fr));
}

.myc-date-header {
    border-right: 1px solid #e0e0e0;
    display: inline-block;
    min-height: 50px;
    padding: 15px 0px;
    vertical-align: top;
}

.myc-date-header:first-of-type {
    padding-left: 3px;
}

.myc-date-header:last-of-type {
    border-right: none;
}

#myc-available-time-container {
    border-top: 1px solid #e0e0e0;
    min-height: 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%/3, max(64px, 100%/5)), 1fr));
    gap: 5px;
}

.myc-day-time-container {
    display: inline-block;
    height: 100%;
    padding: 15px 0;
    vertical-align: top;
}

.myc-day-time-container:first-of-type {
    padding-left: 3px;
}

.myc-day-time-container:last-of-type {
    border-right: none;
}

.myc-date-number {
    font-size: 1.8em;
    font-weight: lighter;
}

.myc-available-time {
    border: 3px solid var(--green);
    border-radius: 20px;
    display: block;
    margin-bottom: 15px;
    padding: 10px 0px 10px 0px;
    text-align: center;
    text-decoration: none;
    min-width: fit-content;
}

.myc-available-time.selected{
    border: 3px solid #bbb;
    color: #bbb;
}

.myc-date-display {
    font-weight: lighter;
}