.app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 999;
}

.footer-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(6px);
    border-top-right-radius: 12px;
    pointer-events: auto;
}

.footer-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.footer-title {
    font-size: 0.8rem;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile dezenter */

@media (max-width: 768px) {

    .footer-inner {
        padding: 8px 12px;
        gap: 8px;
    }

    .footer-icon {
        width: 18px;
        height: 18px;
    }

    .footer-title {
        font-size: 0.7rem;
    }
}
