.language_selector_qr{
    
        background-color: #f4f6fc!important;
        width: 120px;
        border: 0;
        border-radius: 0;
        border-left: 1px solid #eaedf2;
}

.cookieConsentContainer {
        z-index: 999;
        width: 350px;
        min-height: 20px;
        box-sizing: border-box;
        padding: 30px 30px 30px 30px;
        background:#0648b3!important;
        overflow: hidden;
        position: fixed;
        bottom: 30px;
        left: 30px;
        border-radius: 10px;
        display: none;
}

 
@media (max-width: 980px) {
        .cookieConsentContainer {
                bottom: 0px !important;
                left: 50px !important;
                width: 50%  !important;
        }
}

/*notify-laravel-css*/
.inset-0 {
        z-index: 999 !important;
}

/* Enhanced Logo for QR Landing */
.navbar-brand img {
    height: 80px !important;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.navbar-brand img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* Make navbar brand more prominent */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-weight: 600;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 45px !important;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .navbar-brand img {
        height: 40px !important;
        max-width: 120px;
    }
}

/* Enhanced Preloader Styling */
.preloader {
    background-color: #000 !important;
    z-index: 9999;
}

.loader-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.loader-element img {
    height: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 4px 12px rgba(255, 204, 0, 0.3));
    transition: all 0.3s ease;
}

.loader-animated-dot {
    width: 12px;
    height: 12px;
    background-color: #FFCC00;
    border-radius: 50%;
    animation: loaderPulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Responsive preloader */
@media (max-width: 768px) {
    .loader-element img {
        height: 60px !important;
        max-height: 60px !important;
    }
}

@media (max-width: 480px) {
    .loader-element img {
        height: 50px !important;
        max-height: 50px !important;
    }
}