/* Kategori Widget Stilleri */
.widget__categories {
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 8px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.category-link:hover {
    background: #f8f9fa;
    border-color: #007bff;
    color: #007bff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #212529;
    margin-bottom: 2px;
}

.category-desc {
    display: block;
    font-size: 12px;
    color: #6c757d;
    line-height: 1.3;
}

.category-count {
    background: #007bff;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.category-link:hover .category-count {
    background: #0056b3;
}

.no-categories {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .category-link {
        padding: 10px 12px;
    }
    
    .category-name {
        font-size: 13px;
    }
    
    .category-desc {
        font-size: 11px;
    }
    
    .category-count {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* Kategori renkleri */
.category-link[style*="border-left-color: #28a745"]:hover {
    border-color: #28a745;
    color: #28a745;
}

.category-link[style*="border-left-color: #dc3545"]:hover {
    border-color: #dc3545;
    color: #dc3545;
}

.category-link[style*="border-left-color: #ffc107"]:hover {
    border-color: #ffc107;
    color: #ffc107;
}

.category-link[style*="border-left-color: #6f42c1"]:hover {
    border-color: #6f42c1;
    color: #6f42c1;
}

/* Widget başlık stilleri */
.widget__title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.widget__title i {
    margin-right: 8px;
    color: #007bff;
}

/* Ana sayfa kategori grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.category-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.category-card-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: #007bff;
}

.category-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.category-card-count {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
}

.category-card-link {
    display: inline-block;
    padding: 6px 12px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.category-card-link:hover {
    background: #0056b3;
    color: #fff;
    text-decoration: none;
}

