/*
 * Hochzeits-Zeitplan — /tools/hochzeits-zeitplan
 */

.hz-block-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.92rem;
    cursor: pointer;
    min-height: 44px;
}

.hz-block-toggle input {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
}

.hz-sun {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    margin-bottom: 0.75rem;
}

.hz-sun__label {
    margin: 0 0 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
}

.hz-sun__times {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hz-warnings {
    margin-bottom: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
    font-size: 0.88rem;
}

.hz-warnings ul {
    margin: 0;
    padding-left: 1.1rem;
}

.hz-timeline {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hz-item {
    display: grid;
    gap: 0.35rem;
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.hz-item.is-conflict {
    border-color: #f59e0b;
    background: #fffbeb;
}

.hz-item__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.75rem;
    justify-content: space-between;
}

.hz-item__title {
    font-weight: 600;
    font-size: 0.92rem;
}

.hz-item__meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.hz-item__fields {
    display: grid;
    gap: 0.5rem;
}

@media (min-width: 480px) {
    .hz-item__fields {
        grid-template-columns: 1fr 1fr;
    }
}

.hz-item__fields label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.hz-item__fields input {
    min-height: 40px;
    padding: 0.45rem 0.55rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font: inherit;
    color: var(--text-primary);
    background: var(--bg-app, var(--surface));
}

.hz-actions {
    flex-direction: column;
}

.hz-explain {
    max-width: 48rem;
}
