.drop-zone{
    max-width: 50%;
    margin-left: 25%;
    height: 200px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    border: 4px dashed white;
    color: white;
    border-radius: 10px; 
    cursor: pointer;
}

.drop-zone--over, .drop-zone:hover{
    border-style: solid;
    background-color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease 0s;
}

.drop-zone__input, .drop-zone__submit{
    display: none;
}

.drop-zone__thumb{
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 70%;
    position: relative;
}

.drop-zone__thumb::after{
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    background-color: rgb(0, 136, 169, 0.7);
    font-size: 20px;
    text-align: center;
}

.errors{
    margin: 2em;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

.skipErrors{
    padding: 1em;
    background-color: white;
    border: 1px solid red;
    border-radius: 3px;
}

.skipErrors:hover{
    background-color: rgb(255, 191, 191);
}

.generatePDF, .markAllAsPrinted, .editKeywords a{
    padding: 1em;
    border: 2px solid white;
    border-radius: 10px;
    margin-top:40px;
    color:white;
    font-size: 20px;
}

.editKeywords{
    margin-top:60px;
}

.generatePDF:hover, .markAllAsPrinted:hover, .editKeywords a:hover{
    background-color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease 0s;
}

.designsList, .keywordsList{
    width: 95%;
    margin: 30px auto;
}

.designListHeader{
    display: flex;
}

.listFilter{
    background-color: black;
    padding: 0.5em;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.listFilter img{
    width: 30px;
}

.selectFilter{
    background-color: white;
    border-radius: 10px;
    height: 80%;
    width: 50%;
    margin: auto;
    margin-top: 80px;
    display: flex;
    padding: 0 0.5em;
    overflow-y: auto;
}

.KWFilterList{
    width: 100%;
    margin: 28px 18px 18px 0;
}

.KWFilter{
    padding: 1em;
    display: flex;
    justify-content: space-between;
    background-color: rgb(240, 240, 240);
    border-radius: 5px;
    margin-bottom: 8px;
    cursor: pointer;
}

.KWFilter:hover{
    background-color: rgb(220, 220, 220);
}

.KWFilter p{
    margin: 0;
}

.hasChild:after {
    content: url('../../assets/img/flecheBas.png');
    width: 20px;
}

.KWactive:after {
    content: url('../../assets/img/flecheHaut.png');
}

.KWactive{
    background-color: rgb(220, 220, 220);
}

.level1 p{
    padding-left: 20px;
}
.level2 p{
    padding-left: 50px;
}
.level3 p{
    padding-left: 80px;
}
.level1{
    margin-top: 20px;
}
.level2, .level3{
    display: none;
}

.filterLeft{
    display: flex;
}

.filterLeft input{
    width: 15px;
    border: none;
}
.filterLeft img{
    width: 19px;
    height: 19px;
}

.submitFilter{
    width: 100%;
    padding: 10px;
    border: 2px solid black;
    border-radius: 5px;
    border: none;
    font-size: large;
}

.submitFilter:hover{
    background-color: rgba(0, 136, 169,0.8);
    cursor: pointer;
    font-weight: bold;
}

.nbDesignsList, .nbKeywordsList{
    background-color: white;
    background-color: 2px solid gray;
    width: fit-content;
    margin: 0 auto;
    padding: 1em;
    border-radius: 10px;
}

.nbDesignsList p, .nbKeywordsList p{
    margin: 0;
}

.designListDetails, .keywordListDetails{
    background-color: white;
    margin: 0.2em;
    border: 2px solid gray;
    height: 75px;
    display: flex;
    justify-content: space-between;
}

.designListImg{
    max-width: 70px;
    max-height: 70px;
}

.detailsListPart, .keywordsListPart{
    padding: 0 10px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keywordsListPart form{
    display: flex;
    align-items: center;
    height:80%;
}

.detailsListPart:first-child{
    border-right: 2px solid gray;
    width: 75px;
}

.actionsDesignList, .actionsKeywordList{
    width: 40px;
    height: 40px;
    margin-left: 20px;
}

.actionsDesignList img, .actionsKeywordList img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.actions{
    position: relative;
    display: inline-block;
}

.actions .tooltip {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
  
    position: absolute;
    width: 120px;
    bottom: 100%;
    left: 50%;
    margin-left: -60px;
}

.actions:hover .tooltip {
    visibility: visible;
}

.detailsListPartForm{
    display: flex;
}

.detailsListPartForm p{
    margin: 0;
}

.designsListEdit{
    position: absolute;
    z-index: 1;
    max-height: 200px;
    overflow-y: scroll;
}

.pageSelector{
    display: flex;
    background-color: lightgray;
    border-radius: 10px;
    justify-content: center;
    width: 65px;
    margin: 0 auto;
}

.pageSelector h4{
    margin: 0;
    padding: 5px;
    color: black;
}

.pageSelector input{
    padding: 0;
    width: 20px;
    text-align: center;
    border: none;
    background: none;
    font-weight: bolder;
    font-size: large;
}

.pageSelector form{
    display: flex;
    align-items: center;
}