/* Strip Log Gráfico - Cyber Dark */
.strip-log-container {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: var(--bg-input);
}

.strip-header-row {
    display: flex;
    border-bottom: 2px solid var(--shadow-accent);
    background: var(--bg-surface);
    font-size: 0.75rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    flex-shrink: 0;
    color: var(--accent);
    letter-spacing: 0.05em;
    text-shadow: 0 0 5px var(--shadow-light);
}

.strip-body-row {
    flex: 1;
    display: flex;
    overflow-y: auto;
    position: relative;
    background: var(--border-light);
}
.strip-body-row::-webkit-scrollbar { width: 6px; }

.col-header {
    padding: 0.75rem 0;
    border-right: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.col-body {
    position: relative;
    border-right: 1px solid var(--border-light);
    flex-shrink: 0;
    min-height: 100%;
}

.col-ruler {
    width: 60px;
}

.col-litho {
    width: 100px;
    position: relative;
    overflow: hidden;
}

.col-alt {
    width: 100px;
}

.col-struct {
    width: 60px;
}

.col-assay {
    width: 140px;
    background: rgba(0, 0, 0, 0.15);
}

.col-desc {
    flex: 1;
    min-width: 150px;
}

/* Ruler */
.ruler-tick {
    position: absolute;
    left: 0;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 1;
}

.ruler-tick.major {
    border-top: 1px solid rgba(255,255,255,0.3);
}

.ruler-tick.minor {
    width: 30%;
    border-top-color: rgba(255,255,255,0.05);
}

.ruler-tick.medium {
    width: 50%;
    border-top-color: var(--border-light);
}

.ruler-label {
    position: absolute;
    right: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent);
    transform: translateY(-90%);
    background: var(--bg-surface);
    padding: 0 4px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

/* Log Blocks */
.log-interval-block {
    position: absolute;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    color: #111; /* text on litho colors should be dark for contrast */
    text-shadow: 0px 1px 2px rgba(255,255,255,0.6);
}

.log-interval-block:hover {
    filter: brightness(1.2);
    z-index: 10;
    outline: 2px solid var(--accent);
    box-shadow: 0 0 15px var(--shadow-accent);
}

.log-interval-block.desc-block {
    justify-content: flex-start;
    padding: 4px 0.75rem;
    font-weight: 400;
    align-items: flex-start;
    white-space: pre-wrap;
    line-height: 1.3;
    background: transparent;
    font-size: 0.75rem;
    color: var(--text-main);
    text-shadow: none;
    border-bottom: 1px dashed var(--border-light);
}

.log-interval-block.struct-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--warning);
    text-shadow: none;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
}

.struct-symbol {
    font-size: 1.1rem;
    line-height: 1;
    font-weight: 800;
    text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
}