
.mobile-warning-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.mobile-warning-content {
    background-color: white;
    border-radius: 12px;
    max-width: 90%;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: scaleIn 0.3s ease;
    overflow: hidden;
}

.mobile-warning-header {
    padding: 15px;
    background-color: #ff4757;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-warning-header h3 {
    margin: 0;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-warning-body {
    padding: 20px;
    text-align: center;
}

.mobile-warning-body p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
}

.mobile-warning-footer {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.continue-btn {
    background-color: #ec3750;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.continue-btn:hover {
    background-color: #d32f3f;
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
