/* Đảm bảo nội dung không bị thanh điều hướng che mất */
body { padding-bottom: 75px; background-color: #f8f9fa; }

/* Thanh điều hướng xịn xò dưới cùng */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 2000;
}

.nav-item {
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.75rem;
}

.nav-item i { font-size: 1.5rem; display: block; }

.nav-item.active { color: #0d6efd; font-weight: bold; }

.pointer{
    cursor: pointer;
}