.breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #4a90e2;
}

.breadcrumb-item {
    margin-right: 5px;
    cursor: pointer;
}

.breadcrumb-item::after {
    content: '/';
    margin-left: 5px;
}

.breadcrumb-item:last-child::after {
    content: '';
}

.file-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
    height: -webkit-max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#side-content{
    .spinner {
        width: 36px;
        height: 36px;
        border: 4px dotted transparent;
        border-radius: 50%;
        border-top-color: #09f;
        -webkit-animation: spin 1s ease-in-out infinite;
                animation: spin 1s ease-in-out infinite;
    }
}


.file-item[data-path] {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1) 0%, rgba(245, 245, 245, 1) 100%);
    height: auto !important;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.file-item.expanded {
    -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
            box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}

.file-item .more-info {
    display: none;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translateY(-50%) scale(0.95);
            transform: translateY(-50%) scale(0.95);
}

.file-item.expanded .more-info {
    -webkit-transform: translateY(0%) scale(1);
            transform: translateY(0%) scale(1);
    display: block;
    padding-top: 16px;
    padding-top: 1rem;
}

.file-manager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.directory, .file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px;
    background: #fff;
    margin-bottom: 5px;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
}

.directory:hover, .file:hover {
    background: #f0f0f0;
}

.directory .icon, .file .icon {
    margin-right: 10px;
}
.upload-dialog {
    z-index: 50;
}

.drop-area {
    width: 100%;
    height: 290px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}
.upload-dialog{

    .progress-container {
        width: 100%;
        background-color: #f3f3f3;
        border-radius: 5px;
        margin-top: 10px;
    }
    
    .progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        width: 0%;
        background-color: #4596e2;
        -webkit-transition: width 0.4s ease;
        transition: width 0.4s ease;
    }
    
    .spinner {
        width: 20px;
        height: 20px;
        border: 4px solid rgba(255, 255, 255, .3);
        border-radius: 50%;
        border-top-color: white;
        -webkit-animation: spin 1s linear infinite;
                animation: spin 1s linear infinite;
    }
    
    @-webkit-keyframes spin {
        to {
            -webkit-transform: rotate(360deg);
                    transform: rotate(360deg);
        }
    }
    
    @keyframes spin {
        to {
            -webkit-transform: rotate(360deg);
                    transform: rotate(360deg);
        }
    }

    .file-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding: 10px;
        background-color: #f9f9f9;
        border-radius: 5px;
    }
    
    .file-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .file-name {
        font-weight: 600;
    }
    
    .file-size {
        color: #888;
        font-size: 14px;
        font-size: 0.875rem;
    }
    
    .slider-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .slider-label {
        margin-right: 10px;
    }

    .switch {
        position: relative;
        display: inline-block;
        width: 34px;
        height: 20px;
    }

    .switch input {
        display: none;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 14px;
        width: 14px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .slider {
        background-color: #2196F3;
    }

    input:checked + .slider:before {
        -webkit-transform: translateX(14px);
                transform: translateX(14px);
    }
}


.drop-area.dragover {
    background-color: #f0f0f0;
}

.animation-slideRightIn{
    -webkit-animation: slideRightIn 0.4s ease-in-out;
            animation: slideRightIn 0.4s ease-in-out;
}

@-webkit-keyframes slideRightIn {
    0% {
        -webkit-transform: translateX(300px);
                transform: translateX(300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
                transform: translateX(0px);
        opacity: 100;
    }
}

@keyframes slideRightIn {
    0% {
        -webkit-transform: translateX(300px);
                transform: translateX(300px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0px);
                transform: translateX(0px);
        opacity: 100;
    }
}


.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
/* 
.upload-dialog {
    backdrop-filter: blur(25px);
    animation: blurrer 1s linear;
} */

@-webkit-keyframes blurrer {
    0%{
        -webkit-backdrop-filter: blur(0px);
                backdrop-filter: blur(0px);
    }
    100%{
        -webkit-backdrop-filter: blur(25px);
                backdrop-filter: blur(25px);
    }
}

@keyframes blurrer {
    0%{
        -webkit-backdrop-filter: blur(0px);
                backdrop-filter: blur(0px);
    }
    100%{
        -webkit-backdrop-filter: blur(25px);
                backdrop-filter: blur(25px);
    }
}



.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, .16), rgba(82, 123, 173, .11));
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
}

.uploaded .gradient-overlay {
    opacity: 1;
}

.panel {
    overflow-y: auto; /* Enable scrolling if content exceeds panel height */
}

/* Transition for sliding animation */
.transition-transform {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}

/* Slide in from the bottom */
.transform.translate-y-full {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
}

/* Styles for navigation dots */
.navigation-dot {
    width: 12px;
    height: 12px;
    background-color: #CBD5E0;
    border-radius: 50%;
    cursor: pointer;
}

.navigation-dot.active {
    background-color: #4A5568;
}