.sidebar-brand {
    height: 70px;
    padding: 10px;
}

.sidebar-brand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
    border-radius: 50%;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 0 2px var(--white));
}

.sidebar-brand-text {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .logo-img {
        width: 32px;
        height: 32px;
    }

    .sidebar-brand-text {
        display: none;
    }
}