/* Projecten */

.accordeon-header {
    background-color: #7CC085;
    padding: 5px 20px;
    position: relative;
}

.accordeon-header h2 {
    padding: 0; margin: 0;
}

#folderList {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 20px 0 50px;
    gap: 10px;
}

.folder-item {
    position: relative;
    width: 132px;
    min-height: 40px;
    padding: 0 10px !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #3ebd99 40%, #33ade1 100%);
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
}

.folder-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 66px;
    min-height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.folder-item.selected::after {
    width: 120px;
    min-height: 100%;
    background: linear-gradient(135deg, #004d99 0%, #009933 100%);
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
}

.folder-item .folder-name {
    z-index: 5;
    font-size: 1rem;
    width: 120px;
    padding: 5px 0;
    text-align: center;
    color: white;
    line-height: 1;
}

.tooltip-text {
    visibility: hidden;
    width: max-content;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 4px 8px;
    border-radius: 4px;

    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 6px;

    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    z-index: 10;
}

.folder-item:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.inhoud-header {
    display: none;
    height: 0;
}

.project-download {
    display: none;
    gap: 15px;
    justify-content: end;
}

.project-download button {
    color: white;
    cursor: pointer;
}

.project-download #downloadSelected {
    background-color: #3ebd99;
}

.project-download #downloadAll {
    background-color: #33ade1;
}

.dataTables_wrapper .dataTables_paginate {
    padding-top: 10px !important;
}

.paginate_button.disabled {
    cursor: not-allowed !important;
}
