.hot_jobs__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    font-family: "Be Vietnam Pro", sans-serif;
    /* Giữ đồng nhất font */
}


/* Nút pagination */

.hot_jobs__pagination button {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: #ffffff;
    /* Màu nền mặc định */
    color: #2b3298;
    /* Màu icon mặc định */
    border: 1px solid #2b3298;
    /* Viền mặc định */
    border-radius: 50%;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}


/* Hiệu ứng hover */

.hot_jobs__pagination button:hover {
    background-color: #2b3298;
    color: white;
    box-shadow: 0 2px 8px rgba(43, 50, 152, 0.2);
}


/* Hiệu ứng active */

.hot_jobs__pagination button:active {
    background-color: #1a1f6e;
    /* Màu đậm hơn khi click */
    color: white;
    transform: scale(0.95);
    border-color: #1a1f6e;
}


/* Hiệu ứng cho nút bị disabled */

.hot_jobs__pagination button:disabled {
    background-color: #f5f5f5;
    border-color: #ddd;
    color: #aaa;
    cursor: not-allowed;
    opacity: 0.6;
    box-shadow: none;
}

.hot_jobs__pagination button:disabled:hover {
    background-color: #f5f5f5;
    color: #aaa;
    box-shadow: none;
}

.hot_jobs__pagination button img {
    width: 20px;
    height: 20px;
    display: block;
    transition: filter 0.3s ease;
}


/* Đảm bảo icon SVG thay đổi màu theo button */

.hot_jobs__pagination button:hover img,
.hot_jobs__pagination button:active img {
    filter: brightness(0) invert(1);
    /* Chuyển icon sang màu trắng */
}

.hot_jobs__pagination button:disabled img {
    opacity: 0.6;
    filter: grayscale(100%);
}


/* Mũi tên CSS (Sử dụng dấu < và > nhưng styling đẹp hơn) */

.hot_jobs__pagination button::after {
    content: none;
}


/* Thông tin trang */

.hot_jobs__pagination-info {
    font-size: 16px;
    font-weight: 500;
    color: #444;
}


/* Loading states và animations */

.hot_jobs__content {
    position: relative;
    min-height: 200px;
    transition: opacity 0.3s ease;
}

.hot_jobs__content.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.hot_jobs__content.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}


/* Skeleton loading */

.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* Smooth transitions */

.hot_jobs__item {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}