.slider-img {
    width: 500px;
    height: 350px;
    object-fit: cover;
}

/* Lightbox Background */
.mfp-bg {
    background-color: rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
}

.mfp-container {
    background-color: transparent !important;
}

.mfp-content {
    background-color: #fff !important;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.mfp-iframe-holder .mfp-content {
    max-width: 900px;
    background-color: #fff !important;
}

.mfp-iframe-scaler {
    background-color: #fff !important;
}

.mfp-iframe-scaler iframe {
    background-color: #fff !important;
}

.mfp-close {
    color: #333 !important;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    max-width: 400px;
    z-index: 9999;
    animation: slideIn 0.5s ease-out;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
