#calendar {

}

.selectable-cell {
    transition:0.1s;
}

.selectable-cell:hover {
}

.active {
    background-color: #2dacd1 !important;
}

.unactive {
    opacity: 0.8 !important;
}

.closed {
    background-color: #CCCCCC;
}

.selected {
    background-color: #80cbc4 !important;
}

.available {
    background-color: #00cc99;
}

.unavailable {
    background-color: #ff6666;
}

.date-past {
    background-color: white;
    color: #7b7b7b;
}

.date-today {
    color: #000000;
    background-color: cornflowerblue;
}

.date-disabled {
    background-color: #C9C9C9;
    color: #7b7b7b;
}

.week-end {
    background-color: #ececec;
}

table {
    border-collapse: collapse;
    min-width: 700px;
    overflow: scroll;
    table-layout: fixed;
}

table, th, td {
    border: 1px solid #2b2b2b;
}

td {
    max-height: 50px;
    height: 30px;
}

.calendar-row-title {
    white-space: break-spaces;
    padding-left: 10px;
}

table.mini-table, table.mini-table tr, table.mini-table th, table.mini-table td {
    min-width: auto;
    margin: 0;
    padding: 0;
    width: 100%;
    border: none;
}

.wide {
    width: 150px;
}

#table-wrapper {
    position:relative;
}
#table-scroll {
    overflow-x:auto;
    margin-top:20px;
}
#table-wrapper table {
    width:100%;
}

th {
    width: 33px;
}

.calendar-header {
    top:-20px;
    z-index:2;
    height:20px;
    width: 20px;
}


[tooltip]:before {
    position : absolute;
    content : attr(tooltip);
    opacity : 0;
    margin-left: 30px;
    padding-left: 10px;
    min-width: 200px ;
    border: 1px #808080 solid ;
    color: black ;
    background-color: #cfc ;

}

[tooltip]:hover:before {
    opacity : 1;
}

[tooltip]:not([tooltip-persistent]):before {
    pointer-events: none;
}

.warning {
    margin-bottom: 10px;
    color: #8a6d3b;
    background-color: #fcf8e3;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #ffeeba;
}

.success {
    margin-bottom: 10px;
    color: #38fa59;
    background-color: #fcf8e3;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #ffeeba;
}

.error {
    margin-bottom: 10px;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 3px;
    padding: 10px;
}

.margined {
    padding: 15px;
}