.calendar-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0 2rem;
    flex-wrap: wrap;
}

.current-period {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

table.proceedings {
    border-spacing: 0 0.75rem;
    width: 100%;
}

.proceedings tbody tr {
    background: white;
    border-radius: 8px;
    padding: 0;
}

.proceedings tbody tr:hover td {
    border-color: var(--primary);
    background: var(--hover);
    transform: translateX(4px);
}

.proceedings th {
    padding: 0.75rem 1rem;
}

.proceedings tbody td {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.proceedings td:first-child {
    border-left: 1px solid var(--border);
}

.proceedings td:last-child {
    border-right: 1px solid var(--border);
}

.proceedings td:first-child,th:first-child {
    border-radius: 8px 0 0 8px;
    padding: 0.75rem 1rem;
    width: 150px;
}

.proceedings td:last-child,th:last-child {
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    width: 250px;
}

.proceedings .number {
    display: block;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: underline;
    color: var(--primary);
}

.participant {
    height: fit-content;
    font-size: 0.8rem;
    margin-left: 1rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--light);
    color: var(--primary);
    margin-bottom: 0.2rem;
}