﻿body {
    background-image: url('/images/congnghe.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* Tùy chọn: cuộn không bị trôi */
}
#navArea,
#navArea .navbar {
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
}
.news-item {
    transition: border 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    border-radius: 10px;
}

.news-item:hover {
    border: 2px solid #800080;
    box-shadow: 0 4px 12px rgba(128, 0, 128, 0.2);
    background-color: #fdf4fd;
}


.pagination ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 5px;
}

.pagination li a {
    display: block;
    padding: 5px 10px;
    background: #eee;
    color: #333;
    border-radius: 4px;
    text-decoration: none;
}

.pagination li.active a {
    background: #333;
    color: #fff;
    font-weight: bold;
}
.social-share {
    display: inline-block;
    margin-left: 15px;
}

    .social-share a {
        display: inline-block;
        margin-right: 8px;
        font-size: 18px;
        color: #666;
        transition: all 0.3s ease;
        text-decoration: none;
    }

        .social-share a:hover {
            color: #000;
            transform: scale(1.2);
        }

        /* Màu riêng theo từng nền tảng */
        .social-share a[title*="Facebook"]:hover {
            color: #3b5998;
        }

        .social-share a[title*="Messenger"]:hover {
            color: #0084ff;
        }

        .social-share a[title*="Zalo"]:hover img {
            filter: brightness(1.2);
        }

        .social-share a[title*="Twitter"]:hover {
            color: #1da1f2;
        }

        .social-share a[title*="LinkedIn"]:hover {
            color: #0077b5;
        }

        .social-share a[title*="Telegram"]:hover {
            color: #0088cc;
        }

        .social-share a[title*="Email"]:hover {
            color: #d44638;
        }

    /* Icon Zalo dùng ảnh – căn giữa */
    .social-share img {
        height: 18px;
        vertical-align: middle;
        margin-top: -2px;
        transition: all 0.3s ease;
    }

