﻿/* ---- FELIX TOTO BANNER STYLES ---- */

#felix-toto-banner-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1; /* Màu nền có thể thay đổi */
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 99999;
    box-sizing: border-box;
}

.ftb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Mặc định 2 cột trên hàng */
    gap: 15px; /* Khoảng cách giữa các banner */
    max-width: 1200px; /* Giới hạn chiều rộng tối đa */
    margin: 0 auto;
}

.ftb-item a {
    display: block;
}

.ftb-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px; /* Bo góc nhẹ cho đẹp */
    transition: transform 0.2s ease-in-out;
}

.ftb-item img:hover {
    transform: scale(1.03); /* Hiệu ứng khi di chuột qua */
}

/* Nút tắt banner */
#ftb-close-btn {
    position: absolute;
    top: -10px;
    right: 5px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#ftb-close-btn:hover {
    background-color: #ff0000;
}

/* Tối ưu cho giao diện mobile */
@media (max-width: 768px) {
    .ftb-grid {
        grid-template-columns: 1fr; /* Chuyển thành 1 cột trên mobile */
    }

    #felix-toto-banner-container {
        padding: 10px;
    }
}