/* Mặc định cho body */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    transition: background-color 0.5s ease, color 0.5s ease;
}

body.dark-mode {
    background-color: #0F172B !important;
}

/* Đặt video nền */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1000; /* Đặt video phía sau các nội dung khác */
}

.headerClient,
.contentClient,
.footerClient {
    z-index: 1; /* Đảm bảo các thành phần hiển thị trên video */
}
