/**
 * Back to Muro Loco Banner
 * Semi-light to stand out from dark UI
 * @see #186 Cross-App Navigation
 */

.back-to-muro-loco {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 10002;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.back-to-muro-loco a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.15s ease-out;
}

.back-to-muro-loco a:hover {
    color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.1);
}

.back-to-muro-loco a svg {
    flex-shrink: 0;
}

.back-to-muro-loco-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    transition: all 0.15s ease-out;
}

.back-to-muro-loco-close:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

@media (max-width: 480px) {
    .back-to-muro-loco {
        height: 40px;
        padding: 0 12px;
    }

    .back-to-muro-loco a {
        font-size: 12px;
        padding: 6px 10px;
    }

    .back-to-muro-loco-close {
        width: 28px;
        height: 28px;
    }
}

