/* = Custom styles for Albums */
.album-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.album-item h3 {
    font-size: 18px;
    margin: 10px 0 5px;
}

.album-item p {
    font-size: 14px;
    color: #666;
}

.album-item .button {
    display: inline-block;
    padding: 6px 12px;
    background: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
.album-item .button:hover {
    background: #005177;
}

.album-archive .container {
    max-width: 960px;
    margin: auto;
    padding: 40px 20px;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.album-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.album-item:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.album-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.album-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 575px) {
	.site-header .header-inner{
		flex-wrap: nowrap;
	}
}
.site-navigation-dropdown ul.menu li.current-menu-item a{
	background: var(--e-global-color-primary)
}
.site-header .site-navigation ul.menu li a {
  position: relative;
}

.site-header .site-navigation ul.menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d6d6d6;
  transition: width 0.3s ease;
}

.site-header .site-navigation ul.menu li a:hover::after{
	width: 100%;
}

.social-buttons {
    position: fixed; /* Giúp nút luôn hiển thị */
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.social-button {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: 10px;
    text-align: center;
    line-height: 50px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: scale(1.1);
}

/* Tùy chỉnh màu sắc cho từng nút */
.social-button.zalo {
    background-color: #0087FF;
}

.social-button.messenger {
    background-color: #ffffff;
}