/*
* general stuff
*/

.marker {
    display: inline-block;
    width: 20px; height: 20px;
}

.marker.green { background-color: #9FCE1E; }
.marker.red { background-color: #a21818; }
.marker.blue { background-color: #0e94d6; }

/*
* reseravation
*/

#reservation-wrapper {
    max-width: 625px;
    margin: 0 auto;
}

#reservation {
    border: 1px solid lightgrey;
}

#reservation .navigation { 
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 10px;
    background-color: #0f5d8d;
    color: white;
    border-bottom: 1px solid lightgrey;
}

#reservation .period {
    width: 100%;
    font-size: 1.6em;
    font-weight: 400;
    text-align: center;
}

#reservation .prev,
#reservation .next {
    cursor: pointer;
    width: 30px;
}

#reservation .prev { padding-left: 16px; }
#reservation .next { padding-right: 16px; }

#reservation .week .name {
    float: left;
    padding: 1em;
}

#reservation .week .days {
    float: right;
}

#reservation .week .days div {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1em 1.3em;
    transition: background-color 0.2s cubic-bezier(0.25, 0.1, 0.49, 0.9);
    border: 3px solid white;
    border-radius: 50%;
}

#reservation .week .days div:hover {
    cursor: pointer;
}

#reservation .week .days div.is-blocked {
    background-color: #0e94d6 !important;
    color: #fff;
}

#reservation .week .days div.is-selected {
    background-color: #9FCE1E;
    color: #fff;
}

#reservation .week .days div.is-highlighted {
    background-color: #a21818;
    color: #fff;
}

#reservation .week .days div.is-weekend {
    color: #ff3860;
}

#reservation .week .days div.is-disabled { 
    cursor: not-allowed;
    opacity: .50;
}


