/* mobile-focus.css - NO ANIMATIONS */
.mobile-focus-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.mobile-focus-exit {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(168, 85, 247, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
}

.swipe-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    z-index: 1002;
    padding: 1rem;
    user-select: none;
}

.swipe-left {
    left: 0;
}

.swipe-right {
    right: 0;
}