
/* FILE MODAL*/
.file-list {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.file-item:hover {
    background-color: #f5f5f5;
}

.file-item.selected {
    background-color: #d4edda;
}

.file-icon {
    margin-right: 10px;
    width: 20px;
}

.breadcrumb-item {
    color: #007bff;
    cursor: pointer;
    margin-right: 5px;
}

.breadcrumb-item:after {
    content: " / ";
    color: #6c757d;
}

.breadcrumb-item:last-child:after {
    content: "";
}

.loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(70, 69, 69, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}