/* Barcamp Ablauf Block - Tabellen Styling */

.barcamp-ablauf {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.barcamp-table {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.barcamp-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: box-shadow 0.2s ease;
}

.barcamp-row:nth-child(even) {
    background: #fafafa;
}

.barcamp-row:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.barcamp-zeit {
    flex-shrink: 0;
    min-width: 120px;
    font-weight: 600;
    color: #ff1a1a;
    font-size: 0.95rem;
    white-space: nowrap;
}

.barcamp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.barcamp-titel {
    font-weight: 600;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.4;
}

.barcamp-hinweis {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.barcamp-no-items {
    text-align: center;
    color: #9ca3af;
    padding: 2rem;
    font-style: italic;
}

/* Responsive */
@media (max-width: 500px) {
    .barcamp-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .barcamp-zeit {
        min-width: auto;
    }
}
