﻿/* Animation cho menu mobile */
@keyframes slideIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

.mobile-menu-open {
    animation: slideIn 0.3s forwards;
}

.mobile-menu-close {
    animation: slideOut 0.3s forwards;
}

/* Animation cho top bar */
.top-bar {
    transition: transform 0.3s ease-in-out;
}

.top-bar-hidden {
    transform: translateY(-100%);
}

/* Đảm bảo content không nhảy khi top bar ẩn */
header {
    transition: margin-top 0.3s ease-in-out;
}

    /*header.with-top-bar {
        margin-top: 44px;*/ /* Chiều cao của top bar */
    /*}*/

/* Tuỳ chỉnh chung cho phân trang */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

/* Tuỳ chỉnh nút phân trang */
.page-item {
    margin: 0 2px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    color: #0d6efd;
    background-color: #fff;
    border: 1px solid #dee2e6;
    text-decoration: none;
    transition: background-color 0.2s, border-color 0.2s;
}

    .page-link:hover {
        color: #0a58ca;
        background-color: #e9ecef;
        border-color: #dee2e6;
    }

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

@media (max-width: 768px){
    header.with-top-bar{margin-top:unset;}
}
