/* Logos:
   - .logo-sm  → square mark (logo-gutloop-sm.png), used in collapsed sidebar
   - .logo-lg  → horizontal wordmark (logo-gutloop.png), used in expanded sidebar/topbar */
.navbar-brand-box .logo-sm img {
    max-height: 36px;
    max-width: 36px;
    width: auto;
    object-fit: contain;
}

.navbar-brand-box .logo-lg img {
    max-height: 36px;
    width: auto;
    object-fit: contain;
}

.vertical-collpsed .navbar-brand-box .logo-sm img {
    max-height: 32px;
    max-width: 32px;
}

/* ---------- App footer (company / legal info) ----------
   Template's .footer is fixed at 60px; our footer needs ~2 lines on the left
   plus 2 lines on the right, so we relax height + bump page-content bottom
   padding to avoid covering content. */
.app-footer {
    height: auto;
    min-height: 76px;
    padding: 14px calc(24px / 2);
    line-height: 1.45;
    font-size: 0.8125rem;
}

.app-footer .app-footer-brand {
    column-gap: 0.4rem;
    row-gap: 0.15rem;
}

.app-footer .app-footer-name {
    font-weight: 600;
    color: var(--bs-primary);
    letter-spacing: 0.01em;
}

.app-footer .app-footer-tradename {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--bs-secondary-color);
}

.app-footer .app-footer-company {
    font-weight: 500;
    color: var(--bs-body-color);
}

.app-footer .app-footer-address {
    color: var(--bs-secondary-color);
}

.app-footer .app-footer-meta {
    margin-top: 2px;
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.45rem;
    row-gap: 0.15rem;
}

.app-footer .app-footer-meta-key {
    color: var(--bs-tertiary-color);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.6875rem;
    margin-right: 0.15rem;
}

.app-footer .app-footer-sep {
    color: var(--bs-border-color);
    user-select: none;
}

.app-footer .app-footer-copy {
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
}

.app-footer .app-footer-rights {
    color: var(--bs-tertiary-color);
}

/* Reserve room above the (now taller) footer so page content isn't hidden. */
.page-content {
    padding-bottom: 96px;
}

@media (max-width: 991.98px) {
    .app-footer {
        position: static;
        min-height: 0;
    }
    .app-footer .app-footer-copy {
        text-align: left;
        margin-top: 6px;
    }
    .page-content {
        padding-bottom: 24px;
    }
}

