/* In static/css/custom_admin.css */


.login-logo img {
    max-height: 80px !important;
    width: auto;
}

/* Sidebar brand (top logo area) */
.brand-link {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide brand text always */
.brand-link .brand-text {
    display: none;
}

/* Logo image default style (sidebar expanded) */
.brand-link img {
    border-radius: 0 !important; /* No rounded logo */
    max-height: 100px;
    width: 100%; /* Make logo fill sidebar width */
    object-fit: contain; /* Prevent logo from stretching ugly */
    transition: all 0.3s ease; /* Smooth resize */
}

/* Logo image style when sidebar is collapsed */
.sidebar-collapse .brand-link img {
    max-height: 30px;
    width: auto; /* Let it shrink naturally when collapsed */
}



