
.category-badge {
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* SIDEBAR WIDGETS */
.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.175);
}
.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* CATEGORY TAG STYLES */
.category-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--light-color);
    border-radius: 25px;
    margin: 0.3rem;
    font-size: 0.7rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.category-tag:hover {
    background: var(--primary-color);
    color: white;
}
