    .cookie-popup {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background-color: rgba(34, 34, 34, 0.95); /* Slight transparency for a better look */
        color: #ffffff; /* White text for better contrast */
        text-align: center;
        z-index: 9999;
    }
    .cookie-popup p {
        margin: 0 0 10px;
    }
    .cookie-popup a {
        color: #00bfff; /* Contrasting color for links */
        text-decoration: underline;
    }
    .cookie-popup a:hover {
        color: #ffdb4d; /* Change color on hover for better visibility */
    }
    .cookie-popup button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #ffffff; /* Contrasting background color for buttons */
        color: #222; /* Dark text color on button */
        border: none;
        border-radius: 3px;
        cursor: pointer;
        margin: 0 10px;
    }
    .cookie-popup button:hover {
        background-color: #ddd; /* Light hover color for button */
    }
	/* Gradient Button Style */
.transparent-button {
    background: linear-gradient(to bottom, #FFFFEB, #FFE25B);
    border: 2px solid #C28432;
    color: #C28432;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    margin-right: 8px;
    box-sizing: border-box;
    height: 60px;
    width: 200px;
}

.transparent-button:hover {
    background: linear-gradient(to bottom, #FFE25B, #FFFFEB);
    color: #8B5C29;
}

.transparent-button:focus {
    outline: none;
    box-shadow: 0 0 3px rgba(194, 132, 50, 0.5);
}

.topPanel-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-right: 10px;
    height: 100%;
    width: 172px;
}

.langBlock-drop {
    max-height: 250px;
    overflow-y: auto;
    width: 100%;
    position: relative;
}

.langBlock-drop ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.langBlock-drop li {
    padding: 8px 12px;
    margin: 5px 0;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.langBlock-drop li a {
    display: block;
    padding: 5px 0;
    color: inherit;
    text-decoration: none;
}

@media (max-width: 768px) {
	.menu ul {
        padding: 0;
        list-style: none;
        margin: 0;
    }

    .menu li {
        margin-bottom: -15px; /* Reduce the space between items */
    }

    .topPanel-right {
        width: 100%;
        margin-top: -150px; /* Adjusts the topPanel-right up by 70px for mobile */
        margin-left: auto; /* Moves the block to the right */
        margin-right: 100px;  /* Optional, ensures there's no extra margin on the right */
        padding-right: 0; /* Remove padding-right to prevent extra space */
        position: relative; /* Keeps the element in normal flow for mobile */
    }

    .langBlock-drop {
        max-height: 200px;
    }

    .langBlock-drop ul {
        max-height: 200px;
    }
}
    iframe.countdown-frame {
        position: absolute; /* Allows the iframe to scroll with the page */
        top: 400px;
        left: 50%;
        transform: translateX(-50%); /* Center horizontally */
        width: 350px;
        height: 300px;
        border: none;
        border-radius: 20px;
        background: rgba(68, 68, 68, 0.8);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.8);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    iframe.countdown-frame:hover {
        transform: translateX(-50%) scale(1.02); /* Maintain centering during scaling */
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.9);
    }

    @media (max-width: 768px) {
        iframe.countdown-frame {
            top: 200px;
            width: 90%;
            height: 250px;
        }
    }
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: #fff;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            border-radius: 5px;
        }
        .highlight {
            color: #d9534f;
            font-weight: bold;
        }

		 ul, ol {
            padding-left: 20px;
        }
        ul li, ol li {
            margin-bottom: 10px;
            margin-top: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
			margin-top: 20px;
            margin-bottom: 20px;
        }
		th {
			background-color: #f0f0f0;
		}
        th, td {
			border: 1px solid #666;
			padding: 10px;
			text-align: center;
        }
		 .note {
			color: #c62828;
			font-weight: bold;
			margin-top: 15px;
		}
		
.separator {
    margin: 0 5px;
}

.last {
    font-weight: bold;
}

/* Page Header */
.page-header h2 {
    font-size: 24px;
    font-weight: bold;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.category-list li {
    display: inline-block;
    margin-right: 10px;
}

.category-list a {
    text-decoration: none;
    color: #333;
    padding: 8px 16px;
    border: 2px solid #a24b7f;
    border-radius: 8px;
    background-color: #f9f9f9;  /* Màu nền ban đầu */
    transition: all 0.3s ease;  /* Thêm hiệu ứng chuyển động khi hover */
}

/* Đường viền, màu nền và hover */
.category-list a:hover {
    background-color: #a24b7f;  /* Màu nền khi hover */
    color: white;  /* Màu chữ khi hover */
    border-color: #a24b7f;  /* Đổi màu đường viền khi hover */
}

.category-list .active {
    color: #0066cc;
}

/* Post Items */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post-item {
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
}

.post-item img {
    width: 400px;
    height: 300px;
    object-fit: cover;  
    border-radius: 8px;  
}


.content .post-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.post-item h3 {
    font-size: 18px;
    margin-top: 10px;
}
    .image-center {
      text-align: center;
      margin: 20px 0;
    }
    .image-center img {
      max-width: 100%;
      border-radius: 8px;
      box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px; /* khoảng cách giữa ảnh */
  justify-content: center;
}
.image-gallery img {
  width: 250px;
  height: 250px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.image-gallery img:hover {
  transform: scale(1.05);
}