/* Custom Logo Sizing Styles */

/* Header Logo - Main navigation */
.site-main-logo {
    max-width: 200px;
    height: 45px !important;
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

/* Offcanvas Sidebar Logo */
.site-offcanvas-logo {
    max-width: 180px;
    height: 40px !important;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* Admin Sidebar Logo */
.site-admin-logo {
    max-width: 200px;
    height: 32px !important;
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

/* Skills Section Logos */
.skills-tab-item img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Ensure all original legacy logo images maintain aspect ratio */
img[src*="logo/"] {
    object-fit: contain;
}

/* Mobile Responsive Adjustments */
@media only screen and (max-width: 767px) {

    /* Header Logo - Smaller on mobile */
    .site-main-logo {
        max-width: 160px;
        height: 38px !important;
        max-height: 38px;
    }

    /* Offcanvas Sidebar Logo - Smaller on mobile */
    .site-offcanvas-logo {
        max-width: 140px;
        height: 35px !important;
        max-height: 35px;
    }
}