/* ============================================
   APP FOOTER
   Fixed footer always visible at the bottom
   z-index: 101 ensures it renders above the sidebar (z-index: 100)
   ============================================ */

.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 44px;
    z-index: 101;
    background-color: var(--color-white-darker);
    border-top: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.app-footer__text {
    font-family: var(--font-family-primary);
    font-size: 12.5px;
    color: var(--color-gray-500);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.app-footer__text strong {
    color: var(--color-gray-700);
    font-weight: var(--font-weight-semibold);
}

.app-footer__logo {
    height: 18px;
    width: auto;
    vertical-align: middle;
    position: relative;
    top: -1px;
    opacity: 0.75;
}

/* Add spacing to body so footer never covers content */
body {
    padding-bottom: 44px;
}
