/* Global thin footer for legal/support links.
   This intentionally lives outside the draggable Beta panel. */
:root {
    --rcm-global-footer-height: 38px;
}

body {
    padding-bottom: calc(var(--rcm-global-footer-height) + env(safe-area-inset-bottom, 0px));
}

.rcm-global-legal-footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    min-height: var(--rcm-global-footer-height);
    padding: 3px 8px calc(3px + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    background: #090d14;
    border-top: 1px solid #263244;
    color: #aeb9ca;
    text-align: center;
    font-size: 9px;
    line-height: 1.05;
}

.rcm-global-legal-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 11px;
    line-height: 1.05;
    font-weight: 800;
    white-space: nowrap;
}

.rcm-global-legal-footer a,
.rcm-global-legal-footer-button {
    color: #8fc6ff;
    text-decoration: underline;
    font: inherit;
    font-weight: 800;
}

.rcm-global-legal-footer-button {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.rcm-global-legal-footer-copyright {
    white-space: nowrap;
}

@media (max-width: 600px) {
    :root {
        --rcm-global-footer-height: 36px;
    }

    .rcm-global-legal-footer {
        padding-left: 5px;
        padding-right: 5px;
        font-size: 8px;
    }

    .rcm-global-legal-footer-links {
        gap: 6px;
        font-size: 10px;
    }
}
