/* Styles for the topics sidebar */

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 15px;
}

.topic-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 8px;
    background-color: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    text-decoration: none;
    color: var(--bs-body-color);
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.topic-item:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--bs-primary);
}

.topic-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.topic-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.topic-keyword {
    font-size: 0.75rem;
    padding: 2px 6px;
    background-color: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 12px;
    color: var(--bs-primary);
}
