@font-face{
    font-family:"TST";
    src:url("./fonts/TM.ttf");
}

html{
    font-family:"Montserrat";
}

body{
    margin:0;
}

section{
    display: flex;
    justify-content: space-between;
    max-width: 95vw;
    margin: auto;
    align-items:center;
}
select{
    padding:7px 15px;
}
h1{
    color:#9C6BFF;
    font-size:30px;
    font-weight:bold;
}
.all-months_container{
    display:flex;
    justify-content:center;
    width:100%;
    overflow-x:scroll;
    padding-bottom:10px;
}
.all-months_container::-webkit-scrollbar{
    -webkit-appearance:none;
    height:5px;
}
.all-months_container::-webkit-scrollbar-thumb{
    background-color:#9C6BFF;
    height:5px;
    border-radius:10px;
}
.all-months_container button{
    padding:6px 10px;
    background:#9C6BFF;
    color:#fff;
    border-radius:20px;
    box-sizing:border-box;
    border:none;
    box-shadow:0 0 5px #00000030;
    cursor:pointer;
}
.all-months_container button:hover{
    padding:6px 10px;
    background-color:#9C6BFF;
    background:linear-gradient("#00000020",#9C6BFF);
    color:#fff;
    border-radius:20px;
    box-sizing:border-box;
    border:none;
    box-shadow:0 0 5px #00000030;
    cursor:pointer;
}
.month{
    margin:0 10px;
}

.calendrier_container{
    width:95vw;
    margin:auto;
}

table{
    width:100%;
    margin-bottom:30px;
    border-collapse: collapse;
}
thead th:not(:first-child){
    padding:5px 10px;
    box-sizing:border-box;
}
thead th:first-child{
    text-align:left;
}
tbody td:nth-child(1){
    padding:10px 0;
    box-sizing:border-box;
}
th,td{
    border:1px solid #00000030;
}
/* 
tbody td:hover{
    background-color:#9C6BFF20;
} */

.month button.active{
    background-color:#5f419b;
}
.possible_status_container > div{
    margin-right:20px;
}
.calendrier_header{
    text-align:center;
    width:95vw;
    margin:auto;
    background-color:#9C6BFF;
    color:white;
    padding:10px;
    box-sizing:border-box;
    font-size:25px;
}

.possible_status_container{
    display:flex;
    width:95vw;
    margin:auto;
    margin-bottom:15px;
}

.status{
    color:white;
    background-color:orange;
    padding:10px 20px;
    margin-right:5px;
    cursor:move;
}

.dragged_status{
    background-color:orange;
    text-align:center;
    color:white;
    padding-bottom:4px;
}

.close_status{
    text-align:right;
    font-size:11px;
    padding-right:3px;
}

.close_element{
    cursor:pointer;
    display:inline-block;
}

.close_element:hover{
    transform:scale(1.4);
}