/* Album Gallery Styles */

/* LEFT SIDEBAR */

.album-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 0 15px 15px 15px;
    position: sticky;
    top: 100px;
    z-index: 10;
}

.album-menu-item {
    width: 100%;
    border: none;
    background: #fff;
    margin-bottom: 10px;
    padding: 15px;
    text-align: left;
    border-radius: 8px;
    transition: 0.3s ease;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    cursor: pointer;
}

.album-menu-item:hover {
    background: #eaefe9;
    transform: translateX(5px);
}

.album-menu-item.active {
    /* background: #0d6efd; */
    background: #11BB22;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(13, 253, 65, 0.3);
}

.album-count {
    font-size: 13px;
    opacity: 0.8;
}

/* RIGHT IMAGE PANEL */

.album-gallery-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.album-gallery-panel.active {
    display: block !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer;
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.album-menu-item {
    position: relative;
    z-index: 100;
}

.nav-link.album-menu-item.active {
    /* background: #0d6efd !important; */
    background: #11BB22;
    color: #fff !important;
}

.gallery-heading {
    font-size: 32px;
    font-weight: 700;
    margin-left: 0;
    padding-left: 0;
}

.album-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #f8f9fa;
    padding: 12px 18px;

    border-radius: 10px;
    border: 1px solid #e5e5e5;

    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.album-description {
    font-size: 15px;
    color: #444;
    font-weight: 500;
}

.album-date {
    font-size: 14px;
    color: #777;
}

.album-panel{
    display:none;
}

.album-panel.active{
    display:block;
}