/* ===== Turm-Sturm Admin Dashboard ===== */

/* Fragen-Tabelle Spalten */
.tower-question-cols {
    grid-template-columns: 1fr 1fr 140px 40px;
}

@media (max-width: 600px) {
    .tower-question-cols {
        grid-template-columns: 1fr;
    }
    .tower-question-cols.question-header {
        display: none;
    }
}

/* Aktuelle Runde */
.current-round-display {
    min-height: 60px;
}

.event-badge {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
}

.event-badge.golden {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #ffd700;
}

.event-badge.fortress {
    background: rgba(0, 245, 255, 0.1);
    border: 2px solid rgba(0, 245, 255, 0.3);
    color: #00f5ff;
}

.event-display-admin {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-dark);
    border: 2px solid var(--color-warning);
    border-radius: var(--radius-md);
}

.event-display-admin .event-icon {
    font-size: 2rem;
}

.event-display-admin .event-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.event-display-admin .event-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.result-line {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.result-line:last-child {
    border-bottom: none;
}

/* Turm-Balken */
.tower-bar-mini {
    width: 100%;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.tower-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.player-height {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
    min-width: 3rem;
    text-align: right;
}

.player-shields {
    font-size: 0.8rem;
    min-width: 2rem;
}

/* Event-Log */
.event-log {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.event-log-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.log-round {
    font-weight: 700;
    color: var(--color-primary);
    min-width: 2rem;
}

.log-event {
    color: var(--color-warning);
    font-weight: 600;
}

.log-detail {
    color: var(--text-muted);
    flex: 1;
}
