/* ============================================
   Mobile Block Modal Styles
   ============================================
   Modal displayed when mobile user is blocked
   from accessing create/edit features
   ============================================ */

.mobile-block-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-block-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.mobile-block-modal__content {
    position: relative;
    background: var(--bg-card, #1a1a2e);
    border-radius: 16px;
    padding: var(--space-6, 32px);
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.mobile-block-modal__icon {
    font-size: 64px;
    margin-bottom: var(--space-4, 21px);
    line-height: 1;
}

.mobile-block-modal__message {
    color: var(--text-primary, #e0e0e0);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--space-5, 24px);
}

.mobile-block-modal__close {
    width: 100%;
    height: 48px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

/* Small screen adjustments */
@media (max-width: 479px) {
    .mobile-block-modal__content {
        padding: var(--space-5, 24px);
        width: 85%;
    }

    .mobile-block-modal__icon {
        font-size: 48px;
    }

    .mobile-block-modal__message {
        font-size: 14px;
    }

    .mobile-block-modal__close {
        height: 44px;
        font-size: 15px;
    }
}
