.section-container {
    margin-bottom: 32px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
    background: transparent;
}

.section-title:hover {
    color: var(--ocean-mid);
}

.section-title span.count-badge {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    background: var(--ocean-50);
    padding: 2px 8px;
    border-radius: 99px;
    border: 1px solid var(--ocean-light);
    box-shadow: var(--shadow-sm);
}

.chevron {
    transition: transform 0.3s ease;
    color: var(--muted);
}

.section-container.collapsed .chevron {
    transform: rotate(-90deg);
}

.section-content {
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: 5000px;
    opacity: 1;
}

.section-container.collapsed .section-content {
    max-height: 0;
    opacity: 0;
    margin: 0;
}

.university-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.university-card:last-child {
    margin-bottom: 0;
}

td:first-child {
    width: 40%;
}
