body {
    background: #f8f9fa;
}

.album-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.photo-count {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.album-menu .nav-link {
    color: #555;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
    padding: 6px 15px;
}

.album-menu .nav-link.active {
    background: #0d6efd;
    color: #fff;
}


.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}