/* Footer Styles for Fira */
.fira-footer {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    height: 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    z-index: 999;
    font-size: 11px;
    color: #6b7280;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.fira-footer:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
}

.fira-footer-version {
    font-weight: 500;
    color: #9ca3af;
    font-size: 10px;
}

.fira-footer-separator {
    height: 12px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.fira-footer-powered {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #9ca3af;
    font-size: 10px;
}

.fira-footer-onix-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
}

.fira-footer-onix-link:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #5a67d8;
}

.fira-footer-onix-logo {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* No need to adjust body padding - footer is floating */
body {
    padding-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fira-footer {
        font-size: 10px;
        height: 28px;
        gap: 8px;
        padding: 0 12px;
        bottom: 12px;
    }

    .fira-footer-version {
        font-size: 9px;
    }

    .fira-footer-powered {
        font-size: 9px;
    }

    .fira-footer-onix-link {
        font-size: 9px;
    }

    .fira-footer-onix-logo {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .fira-footer {
        font-size: 9px;
        height: 26px;
        padding: 0 10px;
        gap: 6px;
        bottom: 10px;
    }

    .fira-footer-version,
    .fira-footer-powered,
    .fira-footer-onix-link {
        font-size: 8px;
    }

    .fira-footer-separator {
        height: 10px;
    }

    .fira-footer-onix-logo {
        width: 10px;
        height: 10px;
    }
}
