/* Basit ve Minimalist Destek Kategorileri Tasarımı */

/* Sidebar Widget */
.sidebar-widget {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* Kategoriler Header */
.kategoriler-header {
    background: #6366f1;
    color: white;
     margin: 0;
}

.kategoriler-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    border-bottom: 1px solid #f3f4f6;
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.category-list a:hover {
    background-color: #f9fafb;
    color: #6366f1;
}

.category-list a.active {
    background-color: #6366f1;
    color: white;
}

.category-list span {
    background: #e5e7eb;
    color: #6b7280;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

.category-list a.active span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .kategoriler-header {
        padding: 10px 12px;
    }
    
    .kategoriler-header h3 {
        font-size: 14px;
    }
    
    .category-list a {
        padding: 10px 12px;
        font-size: 13px;
    }
}
