:root {
    --tb-primary: #003049; 
    --tb-secondary: #d62828; 
    --tb-bg-light: #f8f9fa;
    --tb-text-dark: #212529;
    --tb-text-muted: #6c757d;
    --tb-white: #ffffff;
    --tb-font-heading: 'Montserrat', sans-serif;
    --tb-font-body: 'Inter', sans-serif;
    --tb-border-radius: 8px;
    --tb-transition: all 0.3s ease;
}

.toronto-sidebar-widget {
    background-color: var(--tb-white);
    padding: 2rem;
    border-radius: var(--tb-border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-bottom: 2rem;
    font-family: var(--tb-font-body);
}

.toronto-sidebar-widget h4 {
    font-family: var(--tb-font-heading);
    font-size: 1.2rem;
    color: var(--tb-primary);
    margin-top: 0;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.toronto-sidebar-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--tb-secondary);
}

.toronto-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toronto-category-list li {
    margin-bottom: 0.75rem;
}

.toronto-category-list a {
    display: flex;
    justify-content: space-between;
    color: var(--tb-text-dark);
    transition: var(--tb-transition);
    font-weight: 500;
    text-decoration: none;
}

.toronto-category-list a:hover {
    color: var(--tb-secondary);
    transform: translateX(5px);
}

.toronto-category-list .count {
    color: var(--tb-text-muted);
    font-size: 0.85rem;
    background: var(--tb-bg-light);
    padding: 2px 8px;
    border-radius: 12px;
}