/* ============== ESTILOS WINDOWS EXPLORER XP ============== */

.explorer-container {
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
    color: #000;
    height: 100%;
    background: #ECE9D8;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* ============== BARRA DE MENÚ ============== */
.explorer-menu-bar {
    background: #ECE9D8;
    border-bottom: 1px solid #ACA899;
    padding: 4px 8px;
    display: flex;
    gap: 0px;
    font-size: 11px;
    min-height: 20px;
    align-items: center;
}

.explorer-menu-bar .menu-item {
    cursor: pointer;
    padding: 2px 8px;
    color: #000;
    white-space: nowrap;
    margin-right: 15px;
    border-radius: 2px;
    transition: background-color 0.2s;
    word-spacing: normal;
    letter-spacing: normal;
    display: inline-block;
}

.explorer-menu-bar .menu-item:hover {
    background: #D4D0C8;
}

.explorer-menu-bar .menu-item u {
    text-decoration: underline;
    display: inline;
    margin: 0;
    padding: 0;
    font-style: inherit;
    font-weight: inherit;
}

/* ============== BARRA DE HERRAMIENTAS ============== */
.explorer-toolbar {
    background: linear-gradient(to bottom, #F7F6F0, #E8E5D7);
    border-bottom: 1px solid #ACA899;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 32px;
}

.toolbar-group {
    display: flex;
    gap: 2px;
    align-items: center;
}

.toolbar-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 4px 6px;
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 22px;
    white-space: nowrap;
    border-radius: 0;
}

.toolbar-btn:hover:not(:disabled) {
    background: linear-gradient(to bottom, #FEFEFE, #E8E5D7);
    border: 1px outset #ACA899;
}

.toolbar-btn:active:not(:disabled) {
    background: linear-gradient(to bottom, #E8E5D7, #FEFEFE);
    border: 1px inset #ACA899;
}

.toolbar-btn:disabled {
    color: #ACA899;
    cursor: default;
}

.toolbar-btn img {
    margin-right: 2px;
}

.toolbar-separator {
    width: 1px;
    height: 20px;
    background: linear-gradient(to bottom, #ACA899, #F7F6F0, #ACA899);
    margin: 0 4px;
}

/* ============== BARRA DE DIRECCIONES ============== */
.explorer-address-bar {
    background: #ECE9D8;
    border-bottom: 1px solid #ACA899;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 24px;
}

.address-label {
    font-size: 11px;
    color: #000;
    min-width: 50px;
}

.address-input-container {
    flex: 1;
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 2px inset #ECE9D8;
    padding: 2px;
}

.address-icon {
    margin: 0 4px;
}

.address-input {
    flex: 1;
    border: none;
    /* Keep XP.css' single dropdown glyph. The background shorthand used here
       reset background-repeat, which made Chromium tile the arrow on hover. */
    background-color: transparent;
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
    color: #000;
    outline: none;
    padding: 2px;
}

.address-select {
    cursor: pointer;
    min-width: 0;
    padding-right: 32px;
    background-repeat: no-repeat;
    background-position: top 2px right 2px;
}

.address-select:hover,
.address-select:focus,
.address-select:active {
    background-repeat: no-repeat;
    background-position: top 2px right 2px;
}

.address-dropdown {
    background: linear-gradient(to bottom, #F8F8F8, #E8E8E8);
    border: 1px outset #ACA899;
    width: 16px;
    height: 18px;
    cursor: pointer;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.address-dropdown:hover {
    background: linear-gradient(to bottom, #FEFEFE, #E8E8E8);
}

.address-dropdown:active {
    border: 1px inset #ACA899;
    background: linear-gradient(to bottom, #E8E8E8, #FEFEFE);
}

.address-go-btn {
    background: linear-gradient(to bottom, #F8F8F8, #E8E8E8);
    border: 1px outset #ACA899;
    padding: 2px 12px;
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
    cursor: pointer;
    color: #000;
}

.address-go-btn:hover {
    background: linear-gradient(to bottom, #FEFEFE, #E8E8E8);
}

.address-go-btn:active {
    border: 1px inset #ACA899;
    background: linear-gradient(to bottom, #E8E8E8, #FEFEFE);
}

/* ============== CONTENIDO PRINCIPAL ============== */
.explorer-main-content {
    flex: 1;
    display: flex;
    overflow: hidden;
}

/* ============== PANEL IZQUIERDO (ÁRBOL DE CARPETAS) ============== */
.explorer-left-panel {
    display: none;
}

.panel-header {
    background: linear-gradient(to bottom, #316AC5, #2158B5);
    color: #FFFFFF;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
}

.folder-tree {
    flex: 1;
    padding: 8px 4px;
    overflow-y: auto;
    background: #FFFFFF;
}

.tree-item {
    margin: 0;
    user-select: none;
}

.tree-item-content {
    display: flex;
    align-items: center;
    padding: 2px 4px;
    cursor: pointer;
    font-size: 11px;
    gap: 2px;
    min-height: 18px;
}

.tree-item-content:hover {
    background: #E5F3FF;
}

.tree-item.selected > .tree-item-content {
    background: #316AC5;
    color: #FFFFFF;
}

.tree-expand {
    width: 12px;
    text-align: center;
    font-family: monospace;
    font-size: 10px;
    cursor: pointer;
    margin-right: 2px;
}

.tree-icon {
    margin-right: 4px;
}

.tree-label {
    flex: 1;
}

.tree-children {
    margin-left: 16px;
    display: none;
}

.tree-item.expanded > .tree-children {
    display: block;
}

/* ============== SEPARADOR ============== */
.explorer-splitter {
    display: none;
}

.explorer-splitter:hover {
    background: #D6D3CE;
}

.explorer-search-panel {
    width: 210px;
    min-width: 180px;
    padding: 14px 12px;
    border-right: 1px solid #7f9db9;
    background: linear-gradient(180deg, #d7e6fb 0%, #eef5ff 100%);
    color: #1f2e52;
}

.explorer-search-panel[hidden] {
    display: none;
}

.search-panel-title {
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #9eb6d8;
    color: #17498f;
    font-size: 13px;
    font-weight: 700;
}

.explorer-search-panel label,
.explorer-search-panel p {
    display: block;
    margin: 0 0 6px;
    font-size: 11px;
    line-height: 1.4;
}

.explorer-search-panel input {
    width: 100%;
    margin-bottom: 8px;
    padding: 5px 6px;
    border: 2px inset #ece9d8;
    background: #fff;
    color: #000;
    font: 11px Tahoma, sans-serif;
}

.explorer-search-panel input:focus-visible {
    outline: 2px solid #316ac5;
    outline-offset: 1px;
}

.explorer-search-panel button {
    min-height: 24px;
    padding: 3px 8px;
    border: 1px outset #aca899;
    background: linear-gradient(#fff, #e5e2d5);
    color: #000;
    font: 11px Tahoma, sans-serif;
    cursor: pointer;
}

.project-empty-state {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #3f4b5f;
    text-align: center;
}

.project-empty-state strong {
    color: #0b3978;
    font-size: 13px;
}

/* ============== PANEL DERECHO (CONTENIDO) ============== */
.explorer-right-panel {
    flex: 1;
    width: 100%;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.content-header {
    background: #ECE9D8;
    border-bottom: 1px solid #ACA899;
    padding: 4px 8px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 24px;
}

.content-view-options {
    display: flex;
    gap: 2px;
}

.view-btn {
    background: transparent;
    border: 1px solid transparent;
    padding: 2px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 22px;
}

.view-btn:hover {
    background: linear-gradient(to bottom, #FEFEFE, #E8E5D7);
    border: 1px outset #ACA899;
}

.view-btn.active {
    background: linear-gradient(to bottom, #E8E5D7, #FEFEFE);
    border: 1px inset #ACA899;
}

.content-area {
    flex: 1;
    padding: 14px 16px;
    overflow: auto;
    background: #FFFFFF;
}

/* ============== VISTA DE CONTENIDO ============== */
.loading-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #666;
    gap: 8px;
}

.loading-message p {
    margin: 0;
    font-size: 11px;
}

/* Vista de íconos */
.icons-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(118px, 128px));
    gap: 18px 22px;
    align-content: start;
    justify-content: start;
    padding: 2px;
}

.project-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 118px;
    min-height: 128px;
    padding: 9px 8px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 3px;
    user-select: none;
}

.project-item:hover {
    background: #E8F0FF;
    border: 1px solid #8bb6f0;
}

.project-item.selected {
    background: linear-gradient(#3b82e9, #2362bd);
    border: 1px solid #174ea6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.project-item:focus-visible,
.list-row:focus-visible {
    outline: 2px solid #f4b43a;
    outline-offset: 2px;
}

.project-item.selected .project-name {
    color: #FFFFFF;
}

.project-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    image-rendering: auto;
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.22));
}


.project-name {
    font-size: 11px;
    font-weight: normal;
    word-wrap: break-word;
    line-height: 1.2;
    margin-top: 4px;
    max-width: 104px;
}

.project-details {
    font-size: 10px;
    color: #666;
    margin-top: 2px;
    max-width: 104px;
}

.project-item.selected .project-details {
    color: #E0E0E0;
}

.project-preview-shell {
    border: 1px solid #aca899;
    background: #f0f0f0;
    margin-bottom: 16px;
}

.project-preview-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 26px;
    padding: 4px 6px;
    border-bottom: 1px solid #aca899;
    background: linear-gradient(to bottom, #ffffff 0%, #e7e7e7 100%);
    color: #1f2937;
    font-size: 11px;
    font-weight: bold;
}

.project-preview-open {
    min-height: 20px;
    padding: 1px 8px;
    font-family: 'Tahoma', sans-serif;
    font-size: 11px;
}

.project-preview-frame {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    background: #ffffff;
}

.project-preview-language-note {
    display: none;
    min-height: 180px;
    padding: 24px;
    place-items: center;
    background: #fff;
    color: #333;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

body[data-locale="en"] .project-preview-frame {
    display: none;
}

body[data-locale="en"] .project-preview-language-note {
    display: grid;
}

.project-preview-fallback {
    border-top: 1px solid #aca899;
    background: #ffffe1;
    color: #3b3b00;
    padding: 4px 7px;
    font: 11px Tahoma, sans-serif;
}

/* Vista de lista */
.list-view {
    display: table;
    width: 100%;
    font-size: 11px;
}

.list-header {
    display: table-header-group;
    background: #F0F0F0;
    border-bottom: 1px solid #ACA899;
}

.list-header-row {
    display: table-row;
}

.list-header-cell {
    display: table-cell;
    padding: 4px 8px;
    font-weight: bold;
    border-right: 1px solid #ACA899;
    cursor: pointer;
}

.list-header-cell:hover {
    background: #E0E0E0;
}

.list-body {
    display: table-row-group;
}

.list-row {
    display: table-row;
    cursor: pointer;
}

.list-row:hover {
    background: #E5F3FF;
}

.list-row.selected {
    background: #316AC5;
    color: #FFFFFF;
}

.list-cell {
    display: table-cell;
    padding: 2px 8px;
    border-right: 1px solid #E0E0E0;
    vertical-align: middle;
}

.list-cell-icon {
    width: 16px;
    text-align: center;
}

/* ============== BARRA DE ESTADO ============== */
.explorer-status-bar {
    background: #ECE9D8;
    border-top: 1px solid #ACA899;
    padding: 2px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    min-height: 20px;
}

.status-left {
    display: flex;
    align-items: center;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-separator {
    width: 1px;
    height: 12px;
    background: #ACA899;
}

/* ============== SCROLLBARS ESTILO WINDOWS XP ============== */
.folder-tree::-webkit-scrollbar,
.content-area::-webkit-scrollbar {
    width: 16px;
}

.folder-tree::-webkit-scrollbar-track,
.content-area::-webkit-scrollbar-track {
    background: #ECE9D8;
    border: 1px solid #ACA899;
}

.folder-tree::-webkit-scrollbar-thumb,
.content-area::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #ECE9D8, #D6D3CE);
    border: 1px solid #ACA899;
    min-height: 16px;
}

.folder-tree::-webkit-scrollbar-thumb:hover,
.content-area::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #D6D3CE, #B6B3AA);
}

.folder-tree::-webkit-scrollbar-button,
.content-area::-webkit-scrollbar-button {
    background: linear-gradient(to bottom, #ECE9D8, #D6D3CE);
    border: 1px solid #ACA899;
    height: 16px;
}

.folder-tree::-webkit-scrollbar-button:hover,
.content-area::-webkit-scrollbar-button:hover {
    background: linear-gradient(to bottom, #D6D3CE, #B6B3AA);
}

/* ============== VISTA DE ICONOS ============== */
.icons-view {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 8px;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 800px) {
    .explorer-left-panel {
        width: 150px;
        min-width: 120px;
    }
    
    .toolbar-btn {
        padding: 2px 4px;
        font-size: 10px;
    }
    
    .toolbar-btn img {
        margin-right: 1px;
    }
    
    .icons-view {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .project-item {
        max-width: 80px;
    }
    
    .project-icon {
        width: 32px;
        height: 32px;
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .explorer-menu-bar {
        padding-inline: 3px;
    }

    .explorer-menu-bar .menu-item {
        margin-right: 0;
        padding-inline: 5px;
    }

    .explorer-toolbar {
        flex-wrap: wrap;
        gap: 2px;
    }
    
    .toolbar-group {
        gap: 1px;
    }
    
    .explorer-left-panel {
        width: 120px;
        min-width: 100px;
    }

    .explorer-search-panel {
        position: absolute;
        inset: 0 auto 0 0;
        z-index: 4;
        width: min(78vw, 250px);
        box-shadow: 3px 0 8px rgba(0, 0, 0, 0.28);
    }

    .explorer-main-content {
        position: relative;
    }

    .address-label,
    .toolbar-separator {
        display: none;
    }
}

/* ============== ANIMACIONES ============== */
.tree-item-content {
    transition: background-color 0.1s ease;
}

.view-btn {
    transition:
        background-color var(--xp-motion-fast) var(--xp-ease-out),
        border-color var(--xp-motion-fast) var(--xp-ease-out),
        box-shadow var(--xp-motion-fast) var(--xp-ease-out),
        transform var(--xp-motion-fast) var(--xp-ease-out);
}

.project-item {
    transition: background-color 0.1s ease;
}

.list-row {
    transition: background-color 0.1s ease;
}

/* ============== MENÚ CONTEXTUAL ============== */
.context-menu {
    position: absolute;
    background: #F0F0F0;
    border: 2px outset #F0F0F0;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-size: 11px;
    z-index: 1000;
    min-width: 120px;
}

.context-menu-item {
    padding: 4px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.context-menu-item:hover {
    background: #316AC5;
    color: #FFFFFF;
}

.context-menu-separator {
    height: 1px;
    background: #ACA899;
    margin: 2px 0;
}

/* ============== TOOLTIP ============== */
.tooltip {
    position: absolute;
    background: #FFFFE1;
    border: 1px solid #000;
    padding: 4px 8px;
    font-size: 11px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    z-index: 1001;
    white-space: nowrap;
    max-width: 300px;
    word-wrap: break-word;
}

/* Vista responsive unificada: Iconos, Lista y Detalles */
.explorer-container .xp-view-menu button {
    cursor: pointer;
}

.explorer-panel-scrim {
    display: none;
}

.explorer-container.folders-open .explorer-left-panel {
    display: flex;
}

.explorer-container.folders-open .explorer-splitter {
    display: block;
}

.content-area {
    min-width: 0;
}

.content-area .icons-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(112px, 126px));
    gap: 16px 20px;
    align-content: start;
    justify-content: start;
    padding: 2px;
}

.content-area .project-item {
    width: 112px;
    min-height: 122px;
}

.content-area .list-view {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
}

.content-area .list-row {
    min-width: 0;
    min-height: 58px;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    padding: 5px 7px;
    border: 1px solid transparent;
    border-radius: 2px;
    color: #000;
}

.content-area .list-row:hover,
.content-area .list-row:focus-visible {
    border-color: #7da2ce;
    background: #e8f0ff;
}

.content-area .list-row.selected {
    border-color: #174ea6;
    background: #316ac5;
    color: #fff;
}

.list-cell-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
}

.list-cell-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.project-list-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.project-list-copy strong,
.project-list-copy small,
.project-list-status {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-list-copy strong {
    font: 400 11px Tahoma, sans-serif;
}

.project-list-copy small,
.project-list-status {
    color: #56606f;
    font: 10px Tahoma, sans-serif;
}

.list-row.selected .project-list-copy small,
.list-row.selected .project-list-status {
    color: #fff;
}

.details-view-scroll {
    max-width: 100%;
    overflow: auto;
    border: 1px solid #d5d5d5;
}

.details-view {
    min-width: 640px;
    color: #000;
    font: 11px Tahoma, sans-serif;
}

.details-header,
.details-row {
    display: grid;
    grid-template-columns: minmax(230px, 1.4fr) 100px minmax(150px, 1fr) minmax(130px, .8fr);
    align-items: center;
}

.details-header {
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: 27px;
    background: linear-gradient(#fff, #e7e7e7);
    font-weight: 700;
}

.details-header span,
.details-row > span {
    min-width: 0;
    padding: 5px 7px;
    border-right: 1px solid #d4d0c8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.details-row {
    min-height: 32px;
    border-top: 1px solid #eef1f6;
    cursor: pointer;
}

.details-row:hover,
.details-row:focus-visible {
    outline: 1px solid #7da2ce;
    outline-offset: -1px;
    background: #e8f0ff;
}

.details-row.selected {
    background: #316ac5;
    color: #fff;
}

.details-name {
    display: flex;
    align-items: center;
    gap: 7px;
}

.details-name .list-cell-icon {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .explorer-menu-bar {
        flex: 0 0 auto;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .explorer-toolbar {
        flex: 0 0 auto;
        display: grid;
        grid-template-columns: auto auto minmax(0, 1fr);
        gap: 1px;
        overflow: visible;
        padding-inline: 3px;
    }

    .explorer-toolbar .toolbar-btn {
        min-height: 34px;
        padding-inline: 4px;
        gap: 2px;
        font-size: 10px;
    }

    .explorer-toolbar .toolbar-separator {
        display: none;
    }

    .explorer-toolbar .toolbar-navigation .toolbar-btn {
        min-width: 31px;
        width: 31px;
        justify-content: center;
        padding-inline: 2px;
    }

    .explorer-toolbar .toolbar-navigation .toolbar-label {
        display: none;
    }

    .explorer-toolbar .toolbar-search-actions {
        min-width: 0;
        display: grid;
        grid-template-columns: repeat(2, 31px);
    }

    .explorer-toolbar .toolbar-search-actions .toolbar-btn {
        min-width: 0;
        width: 31px;
        justify-content: center;
        padding-inline: 2px;
    }

    .explorer-toolbar .toolbar-search-actions .toolbar-label {
        display: none;
    }

    .explorer-toolbar .toolbar-view-actions {
        justify-self: end;
    }

    .explorer-toolbar .toolbar-view-actions .toolbar-btn {
        min-width: 61px;
        justify-content: center;
    }

    .explorer-address-bar {
        padding: 4px;
        gap: 4px;
    }

    .address-go-btn {
        min-height: 32px;
        padding-inline: 10px;
    }

    .explorer-left-panel {
        position: absolute;
        z-index: 7;
        inset: 0 auto 0 0;
        width: min(78vw, 270px);
        min-width: 0;
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.32);
    }

    .explorer-container.folders-open .explorer-panel-scrim {
        position: absolute;
        z-index: 6;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
        background: rgba(24, 48, 82, 0.28);
    }

    .explorer-container.folders-open .explorer-splitter {
        display: none;
    }

    .content-area {
        padding: 8px;
    }

    .content-area .icons-view {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px 4px;
    }

    .content-area .project-item {
        width: 100%;
        max-width: none;
        min-height: 112px;
        padding-inline: 3px;
    }

    .content-area .list-view {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .content-area .list-row {
        min-height: 58px;
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .content-area .project-list-status {
        display: none;
    }

    .details-view-scroll {
        height: 100%;
    }

    .explorer-status-bar .status-right {
        min-width: 0;
        overflow: hidden;
    }

    #selection-info {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}
