/*
Theme Name: CTC VER CLONE
Author: JXVUNGTAU
Description: CTC VER CLONE
Version: 0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tngh
*/
.nav-links {
    display: flex;
    justify-content: center;  /* căn giữa */
    gap: 10px; /* khoảng cách giữa các nút */
    margin: 20px 0;
}

.nav-links .btn-pagination {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    font-size: 25px; /* chữ to */
    color: white;
    background-color: #007BFF; /* xanh dương */
    border-radius: 8px; /* bo góc */
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.nav-links .btn-pagination:hover {
    background-color: #0056b3; /* xanh đậm hơn khi hover */
    transform: scale(1.1);
}

.nav-links .btn-pagination.current {
    background-color: #003d80; /* xanh đậm cho nút hiện tại */
}

.nav-links .dots {
    background: transparent;
    color: #007BFF;
    box-shadow: none;
    pointer-events: none;
}

.slide-wrapper {
    position: relative;
    width: 238px;
    height: 217px;
    overflow: hidden;
}
.slide-wrapper img {
    width: 238px;
    height: 217px;
    object-fit: cover; /* giữ khung */
    display: block;
}
.slide-inner {
    display: flex;
    transition: transform 0.4s ease;
}
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    font-size: 20px;
    padding: 6px

.bg-post-content {
  background-image: url('../images/bg.png');
}

#scroll-to-top-button {
    position: fixed;
    bottom: 80px; /* cách footer một chút */
    right: 20px;
    z-index: 9999; /* cao hơn footer */
}
#cat-dropdown {
   background: rgba(0,0,0,0.4);
   padding-left: 10px;
}

footer {
  position: static !important;
}