﻿:root {
    --primary-color: #1a73e8;
    --bg-color: #f8f9fa;
    --sidebar-width: 280px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--bg-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #3c4043;
    margin: 0;
    height: 100vh;
    overflow: hidden;
}

.search-input-group {
    background: #f1f3f4;
    border-radius: 24px;
    padding-right: 4px;
    transition: background 0.2s;
}

.search-input-group .form-control {
    background: transparent !important;
    border: none !important;
    padding-left: 0;
}

.search-input-group .form-control:focus {
    box-shadow: none;
}

.search-input-group:focus-within {
    background: white;
    box-shadow: 0 1px 1px 0 rgba(65, 69, 73, 0.3), 0 1px 3px 1px rgba(65, 69, 73, 0.15);
}

.search-input-group button#clearSearch {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
}

.search-input-group button#clearSearch:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #202124 !important;
}

.main-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    background: white;
    padding: 24px 8px;
    border-right: 1px solid #dadce0;
    transition: var(--transition);
    height: 100vh;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 0 24px 24px 0;
    color: #3c4043;
    font-weight: 500;
    margin-bottom: 4px;
}

.sidebar .nav-link:hover {
    background-color: #f1f3f4;
}

.sidebar .nav-link.active {
    background-color: #e8f0fe;
    color: #1967d2;
}

.sidebar .nav-link i {
    width: 24px;
    margin-right: 16px;
    font-size: 20px;
}

/* Main Content Area */
.content-area {
    flex: 1;
    padding: 24px;
    background: white;
    margin: 16px;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 32px);
    overflow: hidden;
}

.header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-shrink: 0;
}

#bulkActionBar {
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.4);
}

.doc-list-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

#fileList {
    flex: 1;
    overflow-y: auto;
    padding: 4px;
    /* Custom scrollbar for better aesthetics */
    scrollbar-width: thin;
    scrollbar-color: #dadce0 transparent;
}

@media (max-width: 768px) {
    #bulkActionBar {
        position: fixed;
        bottom: 20px;
        left: 16px;
        right: 16px;
        z-index: 2000;
        margin-bottom: 0 !important;
        border-radius: 50px !important;
        padding: 8px 16px !important;
        background-color: #1a73e8 !important;
        /* Dark background for contrast */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    #bulkActionBar .container-fluid {
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }

    #bulkActionBar #selectedCount {
        margin: 0 !important;
        font-size: 14px;
        white-space: nowrap;
        margin-right: auto !important;
        padding-right: 12px;
    }

    /* Hide text labels on action buttons for mobile */
    #bulkActionBar button:not(#cancelSelection) {
        font-size: 0;
        padding: 8px !important;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        margin-right: 4px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: unset;
        background: rgba(255, 255, 255, 0.1);
        border: none;
    }

    #bulkActionBar button:not(#cancelSelection) i {
        font-size: 14px;
        margin: 0 !important;
    }

    #bulkActionBar button:not(#cancelSelection):hover,
    #bulkActionBar button:not(#cancelSelection):active {
        background: rgba(255, 255, 255, 0.2);
    }

    #bulkActionBar #cancelSelection {
        font-size: 0;
        width: 32px;
        height: 32px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
        color: #dadce0 !important;
    }

    #bulkActionBar #cancelSelection i {
        font-size: 18px;
    }

    /* Ensure the inner flex container doesn't wrapping awkwardly */
    #bulkActionBar .d-flex.align-items-center {
        width: auto;
        flex-shrink: 0;
    }
}

#fileList::-webkit-scrollbar {
    width: 8px;
}

#fileList::-webkit-scrollbar-track {
    background: transparent;
}

#fileList::-webkit-scrollbar-thumb {
    background-color: #dadce0;
    border-radius: 20px;
    border: 2px solid transparent;
}

/* Grids and Cards */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    align-items: start;
    align-content: start;
}

.item-card {
    border: 1px solid #dadce0;
    border-radius: 12px;
    padding: 24px 16px 16px;
    transition: var(--transition);
    cursor: pointer;
    background: white;
    position: relative;
    text-align: center;
}

/* Vertically center content in all grid view cards (folders and files) */
.doc-grid .item-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    /* Increased to ensure uniform height for all cards */
}

.item-card.selected {
    background-color: #e8f0fe !important;
    border-color: var(--primary-color) !important;
}

.item-card .item-checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0;
    transition: var(--transition);
    z-index: 101;
    cursor: default;
}

.item-card:hover .item-checkbox,
.item-card.selected .item-checkbox {
    opacity: 1;
}

.item-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.item-card:hover,
.item-card.dropdown-open {
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .1), 0 4px 12px 3px rgba(60, 64, 67, .15);
    background-color: #f8f9fa;
    z-index: 50;
}

.item-card.dropdown-open {
    z-index: 3000 !important;
}

.item-card .icon {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin-bottom: 10px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Keep thumbnail corners clean */
    border-radius: 8px;
    /* Slightly round the thumbnail inside the card */
}

/* Base item-card height reduction in grid view */
.doc-grid .item-card {
    padding: 16px 12px 12px;
}

/* Reduce height for shared items in desktop grid view */
/* Allow all shared items (files and folders) to take full width */
.doc-grid .item-card.is-shared {
    padding: 18px 14px 14px;
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
}

/* Allow shared folders to take full width */
.doc-grid .item-card.folder-card.is-shared {
    max-width: 100%;
    width: 100%;
    justify-self: stretch;
}

.doc-grid .item-card.is-shared .icon {
    height: 65px;
    font-size: 50px;
    margin-bottom: 10px;
}

.item-card .name {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 8px;
    z-index: 1;
    max-width: 100%;
    /* Force width to trigger ellipsis */
    display: block;
    /* Ensure it behaves as a block for width */
}

.item-card .date,
.item-card .size {
    display: none;
}

.item-card .actions {
    position: absolute;
    top: 6px;
    right: 6px;
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
    /* Increased to ensure visibility over other elements */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 2px 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    max-width: calc(100% - 12px);
    /* Ensure it stays inside with some margin */
    overflow: visible;
    /* Changed from hidden to visible */
}

/* Initially hidden */
.action-btn-group {
    display: none;
    gap: 2px;
}

/* Show on desktop by default */
@media (min-width: 768px) {
    .action-btn-group {
        display: flex;
    }
}

/* Class to toggle actions on mobile */
.action-btn-group.show-actions {
    display: flex !important;
}

.doc-grid .action-btn-group {
    flex-direction: column;
}

.doc-list .action-btn-group {
    flex-direction: row;
}

/* Show the mobile toggle button again, but we will repurpose its click in JS */
.mobile-actions {
    display: block !important;
}

@media (min-width: 768px) {
    .mobile-actions {
        display: none !important;
    }
}

.actions .dropdown-menu {
    z-index: 4000 !important;
    background: white !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.item-card:hover .actions {
    opacity: 1;
}

/* Upload Button Styling */
.btn-new {
    border-radius: 24px;
    padding: 12px 24px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .3), 0 1px 3px 1px rgba(60, 64, 67, .15);
    font-weight: 500;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-new:hover {
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, .3), 0 4px 8px 3px rgba(60, 64, 67, .15);
    background-color: #f8f9fa;
}

/* Modal Styling */
.modal-content {
    border-radius: 12px;
    border: none;
}

.drop-zone {
    border: 2px dashed #dadce0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.drop-zone:hover,
.drop-zone.dragover {
    border-color: var(--primary-color);
    background-color: #e8f0fe;
}

@media (max-width: 991.98px) {
    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100% !important;
        border-right: none;
    }

    .content-area {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        padding-top: 10px;
        height: auto;
        flex: 1;
    }

    .header-actions {
        flex-direction: column-reverse;
        align-items: stretch !important;
    }

    .search-container {
        width: 100%;
        margin-bottom: 10px;
    }

    .doc-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .item-card {
        padding: 16px 12px 12px;
    }

    /* Reduce height for all items in mobile grid view */
    .doc-grid .item-card {
        min-height: 140px;
        /* Smaller than desktop 180px */
        padding: 12px 6px;
    }

    /* Reduce height for shared items */
    .doc-grid .item-card.is-shared {
        padding: 12px 10px 10px;
    }

    .item-card .icon {
        font-size: 48px;
        height: 60px;
    }

    /* Smaller icon for shared items */
    .doc-grid .item-card.is-shared .icon {
        font-size: 44px;
        height: 50px;
        margin-bottom: 8px;
    }

    .item-card .name {
        font-size: 13.5px;
    }

    /* Hide extra columns on mobile list view */
    .doc-list .item-card .date,
    .doc-list .item-card .size,
    .doc-list .item-card .owner,
    .list-header .date-col,
    .list-header .size-col,
    .list-header .owner-col {
        display: none !important;
    }

    .doc-list .item-card .actions,
    .list-header .actions-col {
        width: 50px !important;
        margin-left: 10px !important;
        justify-content: flex-end;
    }

    .list-header .actions-col {
        font-size: 0;
        /* Hide text 'Actions' on mobile header */
    }

    .list-header .actions-col::after {
        content: "\f142";
        /* fa-ellipsis-vertical */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 14px;
    }

    /* Keep actions and checkboxes visible on mobile/tablet */
    .item-card .actions,
    .item-card .item-checkbox {
        opacity: 1 !important;
    }
}

/* List View Transitions */
.doc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.doc-list .item-card {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 12px 16px;
    border: none;
    border-bottom: 1px solid #f1f3f4;
    border-radius: 0;
    overflow: visible;
    /* Fix dropdown clipping */
}

.doc-list .item-card:hover {
    background-color: #f1f3f4;
    box-shadow: none;
}

.doc-list .item-card .icon {
    font-size: 24px;
    margin-bottom: 0;
    margin-right: 16px;
    width: 24px;
}

.doc-list .item-card .name {
    flex: 1;
    padding: 0;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 20px;
}

.doc-list .item-card .actions {
    position: relative;
    opacity: 1;
    margin-left: 0;
    /* Remove auto, we'll use specific spacing */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    /* Vertically align within the list item */
    gap: 4px;
    width: 60px;
    /* Default width for toggle button */
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    flex-shrink: 0;
    /* Prevent shrinking */
}

/* On Desktop list view, give actions enough space to not overlap with size */
@media (min-width: 992px) {
    .doc-list .item-card .actions {
        width: 140px;
        /* Reserve space for actions */
        opacity: 0;
        /* Hide by default on desktop, show on hover */
    }

    .doc-list .item-card:hover .actions {
        opacity: 1;
    }

    /* Ensure previous column has room */
    .doc-list .item-card .size {
        margin-right: 10px;
    }
}

/* Expanded layout style for list view */
.doc-list .item-card .actions .action-btn-group {
    background: white;
    padding: 4px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Floating behavior for mobile list view expansion */
@media (max-width: 768px) {
    .doc-list .item-card .actions .action-btn-group.show-actions {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        flex-direction: row;
        /* Ensure horizontal layout */
    }
}

.doc-list .item-card .actions .badge {
    display: none !important;
}

.doc-list .item-card .date {
    display: block;
    width: 180px;
    font-size: 13px;
    color: #5f6368;
    margin-left: 20px;
}

.doc-list .item-card .size {
    display: block;
    width: 100px;
    font-size: 13px;
    color: #5f6368;
    margin-left: 20px;
    text-align: right;
}

.doc-list .item-card .owner {
    display: block;
    width: 120px;
    font-size: 13px;
    color: #5f6368;
    margin-left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

.item-card .owner {
    display: none;
}

.item-card.is-shared .owner {
    display: block;
    font-size: 11px;
    color: #70757a;
    margin-bottom: 4px;
    padding: 0 12px;
}

.doc-list .item-card .item-checkbox {
    position: static;
    opacity: 1;
    margin-right: 16px;
}

.checkbox-col {
    width: 40px;
}

.list-header {
    display: none;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #dadce0;
    font-size: 12px;
    font-weight: 500;
    color: #5f6368;
    background: white;
    position: sticky;
    top: 0;
    z-index: 200;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.is-list-view .list-header {
    display: flex;
}

.list-header .icon-col {
    width: 24px;
    margin-right: 16px;
}

.list-header .name-col {
    flex: 1;
    margin-right: 20px;
}

.list-header .owner-col {
    width: 120px;
    margin-left: 20px;
}

.list-header .date-col {
    width: 180px;
    margin-left: 20px;
}

.list-header .size-col {
    width: 100px;
    margin-left: 20px;
    text-align: right;
}

.list-header .actions-col {
    width: 150px;
    margin-left: 20px;
    text-align: center;
}

.btn-group .btn.active {
    background-color: #e8f0fe;
    color: #1a73e8;
}

@media (min-width: 992px) {
    .sidebar {
        display: block !important;
        visibility: visible !important;
        transform: none !important;
        position: static !important;
    }
}

/* Button-style Breadcrumbs */
.breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0 !important;
}

.breadcrumb-item {
    display: flex !important;
    align-items: center !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "\f054" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 10px !important;
    color: #5f6368 !important;
    padding: 0 12px !important;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    display: inline-flex !important;
    align-items: center !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    font-weight: 500 !important;
    font-size: 18px !important;
    color: #1f1f1f !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.breadcrumb-item a {
    color: #5f6368 !important;
}

.breadcrumb-item a:hover {
    background-color: rgba(60, 64, 67, .08) !important;
    color: #1f1f1f !important;
}

.breadcrumb-item.active {
    color: #1f1f1f !important;
    background-color: transparent !important;
}

/* Drag and Drop Overlay */
.drag-drop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px dashed var(--primary-color);
    border-radius: 16px;
    pointer-events: none;
    /* Allows drop events to pass through if handled globally */
}

.drag-drop-overlay.active {
    display: flex !important;
}

.drag-target {
    border: 2px solid var(--primary-color) !important;
    background-color: #e8f0fe !important;
    transform: scale(1.05);
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-pointer:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

#contextMenu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
}

#contextMenu .dropdown-item:hover {
    background-color: #f1f3f4;
}

.file-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.item-card:hover .file-thumbnail {
    transform: scale(1.1);
}

.file-text-preview {
    width: 600px;
    height: 600px;
    border: none;
    transform: scale(0.18);
    transform-origin: top left;
    pointer-events: none;
    user-select: none;
    background: white;
    overflow: hidden;
    padding: 20px;
}

#previewContainer img {
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    object-fit: contain;
}

#previewContainer iframe {
    width: 100%;
    height: 100%;
    background: white;
    border: none;
}

.text-preview-container {
    width: 100%;
    max-width: 900px;
    height: 90vh;
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    overflow: auto;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.preview-modal .modal-content {
    border-radius: 0;
}

.preview-modal .btn-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.doc-list .icon {
    height: 24px !important;
    width: 24px !important;
    font-size: 24px !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

.doc-list .icon.overflow-hidden {
    height: 24px;
    width: 24px;
    background: transparent;
    margin-bottom: 0;
}

.doc-list .file-text-preview,
.doc-list .file-thumbnail {
    display: none !important;
}

.doc-grid .list-icon-only {
    display: none !important;
}

.doc-list .list-icon-only {
    display: inline-block !important;
}

/* Floating Upload Widget */
.upload-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 360px;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    z-index: 2000;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    border: 1px solid #dadce0;
}

.upload-widget.hidden {
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.upload-widget-header {
    background: #202124;
    color: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.upload-widget-body {
    padding: 20px;
}

.upload-widget-footer {
    padding: 0 20px 20px;
    text-align: right;
}

.upload-progress-info {
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-bar-container {
    height: 8px;
    background: #e8f0fe;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.3s ease;
}

/* User Profile Sidebar Section */
.user-profile {
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 5;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 2px 5px rgba(26, 115, 232, 0.2);
}

.user-info h6 {
    font-size: 14px;
    color: #202124;
}

.user-info small {
    font-size: 12px;
}

.sidebar .offcanvas-body {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Sharing Features */
.avatar-circle-sm {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.smaller {
    font-size: 11px;
}

.item-card.is-shared {
    border-left: 4px solid var(--primary-color);
}

.item-card.is-shared .icon {
    position: relative;
}

.item-card.is-shared .icon::after {
    content: "\f1e0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary-color);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .header-actions {
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px !important;
        margin-bottom: 16px !important;
    }

    .empty-state-img {
        width: 180px !important;
        height: auto !important;
    }

    .breadcrumb {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 4px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .breadcrumb::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb-item a,
    .breadcrumb-item.active {
        font-size: 15px !important;
        padding: 4px 6px !important;
        white-space: nowrap !important;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        padding: 0 4px !important;
        font-size: 9px !important;
    }
}