/* MASTER LIGHT THEME OVERRIDE */
#network-gallery, 
#device-gallery, 
.gallery-grid, 
.logo-gallery, 
.gallery-item, 
.gallery-item img,
.ticker-item,
.ticker-item img {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: none !important;
    outline: none !important;
    color: #111111 !important;
}

.gallery-grid {
    display: grid !important;
    gap: 20px !important;
    padding: 15px !important;
    background: #ffffff !important;
}

.gallery-item {
    background: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.gallery-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
}

.gallery-item img {
    max-height: 250px !important;
    width: auto !important;
    max-width: 100% !important;
}

/* Ensure no dark backgrounds show through in any media query */
@media (max-width: 1200px), (max-width: 768px), (max-width: 480px) {
    #network-gallery, #device-gallery, .gallery-grid, .gallery-item {
        background: #ffffff !important;
    }
    .gallery-item {
        box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
        border-radius: 12px !important;
    }
}
