/* Append to existing CSS */

/* Aux Panel Styling */
.aux-panel-content {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
    padding-bottom: 2rem;
}

.split.expanded .aux-panel-content {
    opacity: 1;
    transform: translateY(0);
}

.aux-item h3 {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.4rem;
}

/* Enterprise Aux */
.pipeline-viz {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.split.left .pipeline-viz .step.active {
    color: var(--ent-accent);
    text-shadow: 0 0 10px var(--ent-accent);
}

.check-list {
    list-style: none;
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.6;
}

.check-list li::before {
    content: '✓ ';
    color: var(--ent-accent);
}

/* Collector Aux */
.quest-list {
    list-style: none;
    font-size: 0.8rem;
}

.quest-list li {
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
}

.tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    color: white;
}

.tag.high {
    background: rgba(255, 77, 0, 0.2);
    color: var(--col-accent);
    border: 1px solid rgba(255, 77, 0, 0.3);
}

.device-icons {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Locked State (Click interaction) */
.split.locked {
    flex: 6 !important;
    overflow-y: auto;
    padding-bottom: 100px;
}

.split.locked .split-content {
    opacity: 1;
}

.split.locked .split-body {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    overflow: visible;
}

.split.locked .aux-panel-content {
    opacity: 1;
    transform: translateY(0);
}

.split:not(.locked).dimmed {
    flex: 1 !important;
    filter: grayscale(1) brightness(0.3);
    pointer-events: none;
}