/* Logo styles */
.menu-logo-wrap {
    display: flex;
    align-items: center;
    height: 60px;
}

.menu-logo-wrap img {
    width: 180px;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.side-panel__content .logo img {
    width: 80px;
    height: auto;
}

.footer-common__body-content .logo img {
    width: 60px;
    height: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-logo-wrap {
        height: 40px;
    }
    
    .menu-logo-wrap img {
        width: 120px;
    }
    
    .side-panel__content .logo img {
        width: 60px;
    }
    
    .footer-common__body-content .logo img {
        width: 50px;
    }
} 