/* Layout wrapper */#sidebar {
    width: 460px;
    background: var(--panel);
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    z-index: 5;
    overflow: visible;
    flex-shrink: 0;
}/* Skeletons */@keyframes skeleton-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.85; }
}.skeleton {
    background: rgba(255, 255, 255, 0.05) !important;
    animation: skeleton-pulse 1.4s infinite ease-in-out;
    color: transparent !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
    pointer-events: none;
}.skeleton * {
    visibility: hidden;
}/* Main Container Positioning */main.container {
    flex-grow: 1;
    min-width: 0;
    margin-left: 0;
    padding: 0 0 28px 0;
    box-sizing: border-box;
}/* Force Hidden state for Inline History Section */.hidden {
    display: none !important;
}/* Responsive Scaling Overrides */@media (max-width: 1100px) {
    
    
    #sidebar {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 0;
    }
    
    main.container {
        width: 100%;
    }
}@media (min-width: 1101px) and (max-width: 1320px) {
    #sidebar {
        width: 360px;
    }
}@media (min-width: 1321px) {
    #sidebar {
        width: 460px;
    }
}.remote-player-label {
    position: absolute;
    z-index: 20;
    padding: 2px 5px;
    background: rgba(8, 8, 8, 0.78);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-s);
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.15;
    pointer-events: none;
    text-shadow: 1px 1px 0 #000000;
    transform: translate(-50%, -100%);
    white-space: nowrap;
}/* Custom Tooltip */.poi-tooltip-permanent {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #f4c542 !important;
    font-weight: 700 !important;
    font-size: 0.76rem;
    text-shadow: 1px 1px 2px #000, -1px -1px 2px #000, 1px -1px 2px #000, -1px 1px 2px #000, 0 0 4px #000 !important;
    pointer-events: none !important;
    padding: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    overflow: visible;
    text-align: center;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}.poi-tooltip-permanent::before {
    display: none !important;
}.item-hover-tooltip {
    background: var(--panel-deep) !important;
    color: var(--accent) !important;
    border: 1px solid var(--accent) !important;
    border-radius: 0 !important;
    box-shadow: var(--shadow-m) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    padding: 4px 8px !important;
    z-index: 1000 !important;
    pointer-events: none !important;
}/* Unified Item Selector Styles */.item-list-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border);
}.item-counter {
    font-size: 0.75rem;
    font-family: var(--font-code);
    color: var(--muted);
    font-weight: bold;
}.zoom-to-item-btn {
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    padding: 0;
    font-size: 0.85rem;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}.zoom-to-item-btn:hover {
    color: var(--accent-strong);
    transform: scale(1.15);
}