
.planning-table{
    width:100%;
    border: 1px solid black;
    border-radius: 25px;
    border-collapse: inherit;
    table-layout: fixed;
    background: white;
    color: black;
}

.planning-table td{
    opacity: 1;
    height: 45px;
}
th#month {
    font-size: 20px;
}
.planning-table th{
    height: 25px;
}
.planning-table td:hover{
    cursor: not-allowed;
}

.planning-table td.not-available {
    background: #e55454;
}
.planning-table td.available {
    background: #00c062;
}
.planning-table td.available:hover {
    cursor:pointer;
    opacity: 0.8;
}

.planning-table td.out{
    color:grey;
    background: none;
}
.planning-table td.active{
    color:gold;
    border: 2px solid;
}
.planning-table td.out:hover{
    cursor: not-allowed;
}
.planning-table td{
    color:white;
}

span.creneau.dispo {
    padding: 10px 30px;
    background: #ddd;
    border-radius: 50px;
    margin: 10px;
    color:black;
}

span.creneau.dispo:hover {
    cursor:pointer;
    background: #96da3e;
    color: #FFF;
}

span.creneau.dispo.selected {
    background: #87D728;
    color: #FFF;
}

@media (max-width: 470px) {

    span.creneau.dispo {
        padding: 7px 10px;
        margin: 5px;
    }
}