/* Blog Kategori Tabları */
.blog-category-tabs {
    margin-bottom: 40px;
}

.blog-category-tabs .list-buttons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.blog-category-tabs .list-buttons li {
    margin: 0;
}

.blog-category-tabs .btn-category {
    display: inline-block;
    padding: 12px 24px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.blog-category-tabs .btn-category:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: translateY(-2px);
}

.blog-category-tabs .btn-category.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

/* Loading Spinner */
.loading-blog-category {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.loading-blog-category .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Blog List Container */
.box-list-blogs {
    position: relative;
    min-height: 200px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-category-tabs .list-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-category-tabs .btn-category {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
} 