.slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: none !important;
}

/* Dark background class */
.slide.dark {
    background: rgba(0, 0, 0, 0.1) !important;
}

/* Light background class */
.slide.light {
    background: rgba(255, 255, 255, 0.1) !important;
}

.slide img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)) contrast(1.3) brightness(1.15) saturate(1.1);
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 6px;
}

.slide.larger-logo img {
    max-height: 100px;
    max-width: 120%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4)) contrast(1.3) brightness(1.15) saturate(1.1);
}

.slide:hover img {
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6)) contrast(1.4) brightness(1.2) saturate(1.2);
    transform: scale(1.08);
}
