.cloud-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cloud-category {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    color: #000;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cloud-category:hover,
.cloud-category.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.show-more-btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

.hidden-category {
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.hidden-category.show {
    opacity: 1;
    transform: translateY(0);
}

/*.blog-post {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.blog-post:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-thumb img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

.blog-post-title h2 {
    font-size: 1.5rem;
    margin: 0;
}

.blog-post-title a {
    color: #000;
    text-decoration: none;
}

.blog-post-title a:hover {
    color: #007bff;
}

.blog-post-author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.blog-post-content {
    font-size: 0.9rem;
    color: #666;
}*/

.pagination {
    justify-content: center;
}

.page-item .page-link {
    border: none;
    color: #007bff;
    background: none;
    padding: 10px 15px;
    margin: 0 5px;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #007bff;
    border-radius: 50%;
}

.page-item.disabled .page-link {
    color: #ccc;
}